Refified processService methods;

Add approve page and criate its layout;
Finish functionality for list approve page
This commit is contained in:
Tiago Kayaya
2020-11-05 16:43:01 +01:00
parent 6fa19e7795
commit bfa4f2ec91
44 changed files with 160897 additions and 28 deletions
@@ -0,0 +1,17 @@
import { NgModule } from '@angular/core';
import { Routes, RouterModule } from '@angular/router';
import { EventListPage } from './event-list.page';
const routes: Routes = [
{
path: '',
component: EventListPage
}
];
@NgModule({
imports: [RouterModule.forChild(routes)],
exports: [RouterModule],
})
export class EventListPageRoutingModule {}