mirror of
https://github.com/Start9Labs/start-os.git
synced 2026-04-01 21:13:09 +00:00
* begin subnav implementation * implement subnav AND angular forms for comparison * unions working-ish, list of enums working * new form approach almost complete * finish new forms approach for action inputs and config * expandable list items and handlebars display * Config animation (#394) * config cammel * config animation Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com> * improve server settings inputs, still needs work * delete all notifications, styling, and bugs * contracted by default Co-authored-by: Drew Ansbacher <drew.ansbacher@gmail.com> Co-authored-by: Drew Ansbacher <drew.ansbacher@spiredigital.com>
27 lines
732 B
TypeScript
27 lines
732 B
TypeScript
import { NgModule } from '@angular/core'
|
|
import { CommonModule } from '@angular/common'
|
|
import { IonicModule } from '@ionic/angular'
|
|
import { RouterModule, Routes } from '@angular/router'
|
|
import { NotificationsPage } from './notifications.page'
|
|
import { BadgeMenuComponentModule } from 'src/app/components/badge-menu-button/badge-menu.component.module'
|
|
import { SharingModule } from 'src/app/modules/sharing.module'
|
|
|
|
const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: NotificationsPage,
|
|
},
|
|
]
|
|
|
|
@NgModule({
|
|
imports: [
|
|
CommonModule,
|
|
IonicModule,
|
|
RouterModule.forChild(routes),
|
|
BadgeMenuComponentModule,
|
|
SharingModule,
|
|
],
|
|
declarations: [NotificationsPage],
|
|
})
|
|
export class NotificationsPageModule { }
|