mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-06 21:42:49 +00:00
21 lines
568 B
TypeScript
21 lines
568 B
TypeScript
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,
|
|
},
|
|
};
|
|
}
|