File tree 2 files changed +0
-4
lines changed
2 files changed +0
-4
lines changed Original file line number Diff line number Diff line change @@ -38,15 +38,13 @@ export class EnvironmentServerConfigData {
38
38
vault : string ;
39
39
api : string ;
40
40
identity : string ;
41
- admin : string ;
42
41
notifications : string ;
43
42
sso : string ;
44
43
45
44
constructor ( response : EnvironmentServerConfigResponse ) {
46
45
this . vault = response . vault ;
47
46
this . api = response . api ;
48
47
this . identity = response . identity ;
49
- this . admin = response . admin ;
50
48
this . notifications = response . notifications ;
51
49
this . sso = response . sso ;
52
50
}
Original file line number Diff line number Diff line change @@ -24,7 +24,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
24
24
vault : string ;
25
25
api : string ;
26
26
identity : string ;
27
- admin : string ;
28
27
notifications : string ;
29
28
sso : string ;
30
29
@@ -38,7 +37,6 @@ export class EnvironmentServerConfigResponse extends BaseResponse {
38
37
this . vault = this . getResponseProperty ( "Vault" ) ;
39
38
this . api = this . getResponseProperty ( "Api" ) ;
40
39
this . identity = this . getResponseProperty ( "Identity" ) ;
41
- this . admin = this . getResponseProperty ( "Admin" ) ;
42
40
this . notifications = this . getResponseProperty ( "Notifications" ) ;
43
41
this . sso = this . getResponseProperty ( "Sso" ) ;
44
42
}
You can’t perform that action at this time.
0 commit comments