mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-08 06:22:53 +00:00
feat: sport course booking
This commit is contained in:
@@ -0,0 +1,20 @@
|
||||
import {Component} from '@angular/core';
|
||||
import {DataModule} from '../data/data.module';
|
||||
import {TranslateModule} from '@ngx-translate/core';
|
||||
import {SCSearchFilter, SCThingType} from '@openstapps/core';
|
||||
|
||||
@Component({
|
||||
selector: 'stapps-sport-course-search-page',
|
||||
templateUrl: 'sport-course-search-page.html',
|
||||
standalone: true,
|
||||
imports: [DataModule, TranslateModule],
|
||||
})
|
||||
export class SportCourseSearchPageComponent {
|
||||
forcedFilter: SCSearchFilter = {
|
||||
type: 'value',
|
||||
arguments: {
|
||||
field: 'type',
|
||||
value: SCThingType.SportCourse,
|
||||
},
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user