Create intial config setup modal
remove the registry title
This commit is contained in:
parent
e250f4ebe6
commit
690b7674e7
9 changed files with 121 additions and 18 deletions
|
@ -1,6 +1,9 @@
|
|||
import { NgModule } from 'ng-metadata/core';
|
||||
import * as restangular from 'restangular';
|
||||
|
||||
import { ConfigSetupAppComponent } from './components/config-setup-app/config-setup-app.component';
|
||||
import { LoadConfigComponent } from './components/load-config/load-config.component';
|
||||
|
||||
const quayDependencies: string[] = [
|
||||
'restangular',
|
||||
'ngCookies',
|
||||
|
@ -37,7 +40,10 @@ function provideConfig($provide: ng.auto.IProvideService,
|
|||
|
||||
@NgModule({
|
||||
imports: [ DependencyConfig ],
|
||||
declarations: [],
|
||||
declarations: [
|
||||
ConfigSetupAppComponent,
|
||||
LoadConfigComponent,
|
||||
],
|
||||
providers: []
|
||||
})
|
||||
export class ConfigAppModule {}
|
||||
|
|
Reference in a new issue