This commit is contained in:
parent
a8b849aede
commit
303240e4d2
@ -1,14 +1,14 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { DeployComponent } from './deploy.component';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { RouterModule, Routes } from '@angular/router'
|
||||
import { DeployComponent } from './deploy.component'
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '', component: DeployComponent },
|
||||
{ path: 'manualdeploy', component: DeployComponent },
|
||||
];
|
||||
{ path: 'manualdeploy', component: DeployComponent }
|
||||
]
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class DeployRoutingModule { }
|
||||
export class DeployRoutingModule {}
|
||||
|
@ -1,12 +1,12 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { DeployComponent } from './deploy.component';
|
||||
import { AutomaticComponent } from './sections/automatic/automatic.component';
|
||||
import { ManualComponent } from './sections/manual/manual.component';
|
||||
import { SasjsConfiguratorComponent } from './sections/sasjs-configurator/sasjs-configurator.component';
|
||||
import { ClarityModule } from '@clr/angular';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { DeployRoutingModule } from './deploy-routing.module';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { CommonModule } from '@angular/common'
|
||||
import { DeployComponent } from './deploy.component'
|
||||
import { AutomaticComponent } from './sections/automatic/automatic.component'
|
||||
import { ManualComponent } from './sections/manual/manual.component'
|
||||
import { SasjsConfiguratorComponent } from './sections/sasjs-configurator/sasjs-configurator.component'
|
||||
import { ClarityModule } from '@clr/angular'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { DeployRoutingModule } from './deploy-routing.module'
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
@ -15,11 +15,6 @@ import { DeployRoutingModule } from './deploy-routing.module';
|
||||
ManualComponent,
|
||||
SasjsConfiguratorComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
ClarityModule,
|
||||
DeployRoutingModule
|
||||
]
|
||||
imports: [CommonModule, FormsModule, ClarityModule, DeployRoutingModule]
|
||||
})
|
||||
export class DeployModule { }
|
||||
export class DeployModule {}
|
||||
|
@ -1,7 +1,7 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { LicensingGuard } from '../routes/licensing.guard';
|
||||
import { LicensingComponent } from './licensing.component';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { RouterModule, Routes } from '@angular/router'
|
||||
import { LicensingGuard } from '../routes/licensing.guard'
|
||||
import { LicensingComponent } from './licensing.component'
|
||||
|
||||
const routes: Routes = [
|
||||
{
|
||||
@ -10,10 +10,10 @@ const routes: Routes = [
|
||||
canActivate: [LicensingGuard],
|
||||
canDeactivate: [LicensingGuard]
|
||||
}
|
||||
];
|
||||
]
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class LicensingRoutingModule { }
|
||||
export class LicensingRoutingModule {}
|
||||
|
@ -1,16 +1,14 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { CommonModule } from '@angular/common'
|
||||
|
||||
import { LicensingRoutingModule } from './licensing-routing.module';
|
||||
import { ClarityModule } from '@clr/angular';
|
||||
import { SharedModule } from '../shared/shared.module';
|
||||
import { LicensingComponent } from './licensing.component';
|
||||
import { FormsModule } from '@angular/forms';
|
||||
import { LicensingRoutingModule } from './licensing-routing.module'
|
||||
import { ClarityModule } from '@clr/angular'
|
||||
import { SharedModule } from '../shared/shared.module'
|
||||
import { LicensingComponent } from './licensing.component'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
LicensingComponent
|
||||
],
|
||||
declarations: [LicensingComponent],
|
||||
imports: [
|
||||
CommonModule,
|
||||
FormsModule,
|
||||
@ -19,4 +17,4 @@ import { FormsModule } from '@angular/forms';
|
||||
SharedModule
|
||||
]
|
||||
})
|
||||
export class LicensingModule { }
|
||||
export class LicensingModule {}
|
||||
|
@ -2,7 +2,12 @@ import { Component, OnInit } from '@angular/core'
|
||||
|
||||
import { Router } from '@angular/router'
|
||||
import { SASjsConfig } from '@sasjs/adapter'
|
||||
import { LicenceService, SasStoreService, EventService, SasService } from 'src/app/services'
|
||||
import {
|
||||
LicenceService,
|
||||
SasStoreService,
|
||||
EventService,
|
||||
SasService
|
||||
} from 'src/app/services'
|
||||
|
||||
@Component({
|
||||
selector: 'app-history',
|
||||
|
@ -11,7 +11,7 @@ const ROUTES: Routes = [
|
||||
{ path: 'approveDet/:tableId', component: ApproveDetailsComponent },
|
||||
{ path: 'submitted', component: SubmitterComponent },
|
||||
{ path: 'submitted/:tableId', component: SubmitterComponent },
|
||||
{ path: 'history', component: HistoryComponent },
|
||||
{ path: 'history', component: HistoryComponent }
|
||||
]
|
||||
|
||||
@NgModule({
|
||||
|
@ -1,15 +1,15 @@
|
||||
import { CommonModule } from "@angular/common";
|
||||
import { NgModule } from "@angular/core";
|
||||
import { FormsModule } from "@angular/forms";
|
||||
import { ClarityModule } from "@clr/angular";
|
||||
import { HotTableModule } from "@handsontable/angular";
|
||||
import { DirectivesModule } from "../directives/directives.module";
|
||||
import { SharedModule } from "../shared/shared.module";
|
||||
import { ApproveDetailsComponent } from "./approve-details/approve-details.component";
|
||||
import { ApproveComponent } from "./approve/approve.component";
|
||||
import { ReviewRoutingModule } from "./review-routing.module";
|
||||
import { SubmitterComponent } from "./submitter/submitter.component";
|
||||
import { HistoryComponent } from "./history/history.component";
|
||||
import { CommonModule } from '@angular/common'
|
||||
import { NgModule } from '@angular/core'
|
||||
import { FormsModule } from '@angular/forms'
|
||||
import { ClarityModule } from '@clr/angular'
|
||||
import { HotTableModule } from '@handsontable/angular'
|
||||
import { DirectivesModule } from '../directives/directives.module'
|
||||
import { SharedModule } from '../shared/shared.module'
|
||||
import { ApproveDetailsComponent } from './approve-details/approve-details.component'
|
||||
import { ApproveComponent } from './approve/approve.component'
|
||||
import { ReviewRoutingModule } from './review-routing.module'
|
||||
import { SubmitterComponent } from './submitter/submitter.component'
|
||||
import { HistoryComponent } from './history/history.component'
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
|
@ -1,13 +1,11 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { RouterModule, Routes } from '@angular/router';
|
||||
import { SystemComponent } from './system.component';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { RouterModule, Routes } from '@angular/router'
|
||||
import { SystemComponent } from './system.component'
|
||||
|
||||
const routes: Routes = [
|
||||
{ path: '', component: SystemComponent }
|
||||
];
|
||||
const routes: Routes = [{ path: '', component: SystemComponent }]
|
||||
|
||||
@NgModule({
|
||||
imports: [RouterModule.forChild(routes)],
|
||||
exports: [RouterModule]
|
||||
})
|
||||
export class SystemRoutingModule { }
|
||||
export class SystemRoutingModule {}
|
||||
|
@ -1,19 +1,12 @@
|
||||
import { NgModule } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
|
||||
import { SystemRoutingModule } from './system-routing.module';
|
||||
import { SystemComponent } from './system.component';
|
||||
import { ClarityModule } from '@clr/angular';
|
||||
import { NgModule } from '@angular/core'
|
||||
import { CommonModule } from '@angular/common'
|
||||
|
||||
import { SystemRoutingModule } from './system-routing.module'
|
||||
import { SystemComponent } from './system.component'
|
||||
import { ClarityModule } from '@clr/angular'
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
SystemComponent
|
||||
],
|
||||
imports: [
|
||||
CommonModule,
|
||||
SystemRoutingModule,
|
||||
ClarityModule
|
||||
]
|
||||
declarations: [SystemComponent],
|
||||
imports: [CommonModule, SystemRoutingModule, ClarityModule]
|
||||
})
|
||||
export class SystemModule { }
|
||||
export class SystemModule {}
|
||||
|
@ -18,4 +18,4 @@ In any case, you must not make any such use of this software as to develop softw
|
||||
UNLESS EXPRESSLY AGREED OTHERWISE, 4GL APPS PROVIDES THIS SOFTWARE ON AN "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, AND IN NO EVENT AND UNDER NO LEGAL THEORY, SHALL 4GL APPS BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL, OR CONSEQUENTIAL DAMAGES OF ANY CHARACTER ARISING FROM USE OR INABILITY TO USE THIS SOFTWARE.
|
||||
|
||||
|
||||
`
|
||||
`
|
||||
|
Loading…
Reference in New Issue
Block a user