mirror of
https://gitlab.com/openstapps/openstapps.git
synced 2026-01-23 01:53:00 +00:00
51 lines
1.7 KiB
TypeScript
51 lines
1.7 KiB
TypeScript
/*
|
|
* Copyright (C) 2023 StApps
|
|
* This program is free software: you can redistribute it and/or modify it
|
|
* under the terms of the GNU General Public License as published by the Free
|
|
* Software Foundation, version 3.
|
|
*
|
|
* This program is distributed in the hope that it will be useful, but WITHOUT
|
|
* ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
* FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
|
|
* more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License along with
|
|
* this program. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
import {NgModule} from '@angular/core';
|
|
import {CommonModule} from '@angular/common';
|
|
import {FormsModule} from '@angular/forms';
|
|
import {RouterModule, Routes} from '@angular/router';
|
|
import {IonicModule} from '@ionic/angular';
|
|
import {ProfilePageComponent} from './page/profile-page.component';
|
|
import {TranslateModule} from '@ngx-translate/core';
|
|
import {SwiperModule} from 'swiper/angular';
|
|
import {UtilModule} from '../../util/util.module';
|
|
import {IonIconModule} from '../../util/ion-icon/ion-icon.module';
|
|
import {ProfilePageSectionComponent} from './page/profile-page-section.component';
|
|
import {ThingTranslateModule} from '../../translation/thing-translate.module';
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: 'profile',
|
|
component: ProfilePageComponent,
|
|
},
|
|
];
|
|
|
|
@NgModule({
|
|
declarations: [ProfilePageComponent, ProfilePageSectionComponent],
|
|
imports: [
|
|
CommonModule,
|
|
FormsModule,
|
|
IonIconModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
TranslateModule,
|
|
SwiperModule,
|
|
UtilModule,
|
|
ThingTranslateModule,
|
|
],
|
|
})
|
|
export class ProfilePageModule {}
|