Browse Source

refactor: remove localization property from environment

#3791
pull/3936/head
mehmet-erim 6 years ago
parent
commit
ba248a5a4a
  1. 3
      npm/ng-packs/apps/dev-app/src/environments/environment.prod.ts
  2. 3
      npm/ng-packs/apps/dev-app/src/environments/environment.ts
  3. 11
      templates/app/angular/src/environments/environment.prod.ts
  4. 11
      templates/app/angular/src/environments/environment.ts
  5. 3
      templates/module/angular/src/environments/environment.prod.ts
  6. 3
      templates/module/angular/src/environments/environment.ts

3
npm/ng-packs/apps/dev-app/src/environments/environment.prod.ts

@ -19,7 +19,4 @@ export const environment = {
url: 'https://localhost:44305',
},
},
localization: {
defaultResourceName: 'MyProjectName',
},
};

3
npm/ng-packs/apps/dev-app/src/environments/environment.ts

@ -19,7 +19,4 @@ export const environment = {
url: 'https://localhost:44305',
},
},
localization: {
defaultResourceName: 'MyProjectName',
},
};

11
templates/app/angular/src/environments/environment.prod.ts

@ -2,7 +2,7 @@ export const environment = {
production: true,
application: {
name: 'MyProjectName',
logoUrl: ''
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
@ -11,14 +11,11 @@ export const environment = {
scope: 'MyProjectName',
showDebugInformation: true,
oidc: false,
requireHttps: true
requireHttps: true,
},
apis: {
default: {
url: 'https://localhost:44305'
}
url: 'https://localhost:44305',
},
},
localization: {
defaultResourceName: 'MyProjectName'
}
};

11
templates/app/angular/src/environments/environment.ts

@ -2,7 +2,7 @@ export const environment = {
production: false,
application: {
name: 'MyProjectName',
logoUrl: ''
logoUrl: '',
},
oAuthConfig: {
issuer: 'https://localhost:44305',
@ -11,14 +11,11 @@ export const environment = {
scope: 'MyProjectName',
showDebugInformation: true,
oidc: false,
requireHttps: true
requireHttps: true,
},
apis: {
default: {
url: 'https://localhost:44305'
}
url: 'https://localhost:44305',
},
},
localization: {
defaultResourceName: 'MyProjectName'
}
};

3
templates/module/angular/src/environments/environment.prod.ts

@ -18,7 +18,4 @@ export const environment = {
url: 'https://localhost:44300',
},
},
localization: {
defaultResourceName: 'MyProjectName',
},
};

3
templates/module/angular/src/environments/environment.ts

@ -18,7 +18,4 @@ export const environment = {
url: 'https://localhost:44300',
},
},
localization: {
defaultResourceName: 'MyProjectName',
},
};

Loading…
Cancel
Save