-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #75 from juanfranciscocis/main
Update
- Loading branch information
Showing
42 changed files
with
590 additions
and
238 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
17 changes: 17 additions & 0 deletions
17
...ages/incident_manager/incident-manager-chooser/incident-manager-chooser-routing.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { Routes, RouterModule } from '@angular/router'; | ||
|
||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
|
||
const routes: Routes = [ | ||
{ | ||
path: '', | ||
component: IncidentManagerChooserPage | ||
} | ||
]; | ||
|
||
@NgModule({ | ||
imports: [RouterModule.forChild(routes)], | ||
exports: [RouterModule], | ||
}) | ||
export class IncidentManagerChooserPageRoutingModule {} |
22 changes: 22 additions & 0 deletions
22
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.module.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
import { NgModule } from '@angular/core'; | ||
import { CommonModule } from '@angular/common'; | ||
import { FormsModule } from '@angular/forms'; | ||
|
||
import { IonicModule } from '@ionic/angular'; | ||
|
||
import { IncidentManagerChooserPageRoutingModule } from './incident-manager-chooser-routing.module'; | ||
|
||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
import {ComponentsModule} from "../../../components/components.module"; | ||
|
||
@NgModule({ | ||
imports: [ | ||
CommonModule, | ||
FormsModule, | ||
IonicModule, | ||
IncidentManagerChooserPageRoutingModule, | ||
ComponentsModule | ||
], | ||
declarations: [IncidentManagerChooserPage] | ||
}) | ||
export class IncidentManagerChooserPageModule {} |
8 changes: 8 additions & 0 deletions
8
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
<script src="../../settings/settings.page.ts"></script> | ||
<app-header [title]="'Incident Manager Chooser'"></app-header> | ||
|
||
<ion-content [fullscreen]="true"> | ||
<ion-grid> | ||
<app-title [title]="'Incident Manager Chooser'"></app-title> | ||
</ion-grid> | ||
</ion-content> |
Empty file.
17 changes: 17 additions & 0 deletions
17
...app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import { ComponentFixture, TestBed } from '@angular/core/testing'; | ||
import { IncidentManagerChooserPage } from './incident-manager-chooser.page'; | ||
|
||
describe('IncidentManagerChooserPage', () => { | ||
let component: IncidentManagerChooserPage; | ||
let fixture: ComponentFixture<IncidentManagerChooserPage>; | ||
|
||
beforeEach(() => { | ||
fixture = TestBed.createComponent(IncidentManagerChooserPage); | ||
component = fixture.componentInstance; | ||
fixture.detectChanges(); | ||
}); | ||
|
||
it('should create', () => { | ||
expect(component).toBeTruthy(); | ||
}); | ||
}); |
15 changes: 15 additions & 0 deletions
15
src/app/pages/incident_manager/incident-manager-chooser/incident-manager-chooser.page.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import { Component, OnInit } from '@angular/core'; | ||
|
||
@Component({ | ||
selector: 'app-incident-manager-chooser', | ||
templateUrl: './incident-manager-chooser.page.html', | ||
styleUrls: ['./incident-manager-chooser.page.scss'], | ||
}) | ||
export class IncidentManagerChooserPage implements OnInit { | ||
|
||
constructor() { } | ||
|
||
ngOnInit() { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.