diff options
Diffstat (limited to 'shared')
-rw-r--r-- | shared/models/server/about.model.ts | 1 | ||||
-rw-r--r-- | shared/models/server/custom-config.model.ts | 1 | ||||
-rw-r--r-- | shared/models/server/customization.model.ts | 8 | ||||
-rw-r--r-- | shared/models/server/server-config.model.ts | 1 |
4 files changed, 3 insertions, 8 deletions
diff --git a/shared/models/server/about.model.ts b/shared/models/server/about.model.ts index 7d11da850..10dff8b8f 100644 --- a/shared/models/server/about.model.ts +++ b/shared/models/server/about.model.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | export interface About { | 1 | export interface About { |
2 | instance: { | 2 | instance: { |
3 | name: string | 3 | name: string |
4 | shortDescription: string | ||
4 | description: string | 5 | description: string |
5 | terms: string | 6 | terms: string |
6 | } | 7 | } |
diff --git a/shared/models/server/custom-config.model.ts b/shared/models/server/custom-config.model.ts index 7f3e2df02..b4d24cfbe 100644 --- a/shared/models/server/custom-config.model.ts +++ b/shared/models/server/custom-config.model.ts | |||
@@ -1,6 +1,7 @@ | |||
1 | export interface CustomConfig { | 1 | export interface CustomConfig { |
2 | instance: { | 2 | instance: { |
3 | name: string | 3 | name: string |
4 | shortDescription: string | ||
4 | description: string | 5 | description: string |
5 | terms: string | 6 | terms: string |
6 | defaultClientRoute: string | 7 | defaultClientRoute: string |
diff --git a/shared/models/server/customization.model.ts b/shared/models/server/customization.model.ts deleted file mode 100644 index 4e4d0d193..000000000 --- a/shared/models/server/customization.model.ts +++ /dev/null | |||
@@ -1,8 +0,0 @@ | |||
1 | export interface Customization { | ||
2 | instance: { | ||
3 | customization: { | ||
4 | javascript: string | ||
5 | css: string | ||
6 | } | ||
7 | } | ||
8 | } | ||
diff --git a/shared/models/server/server-config.model.ts b/shared/models/server/server-config.model.ts index a30c24eb9..c6fa651a8 100644 --- a/shared/models/server/server-config.model.ts +++ b/shared/models/server/server-config.model.ts | |||
@@ -3,6 +3,7 @@ export interface ServerConfig { | |||
3 | 3 | ||
4 | instance: { | 4 | instance: { |
5 | name: string | 5 | name: string |
6 | shortDescription: string | ||
6 | defaultClientRoute: string | 7 | defaultClientRoute: string |
7 | customizations: { | 8 | customizations: { |
8 | javascript: string | 9 | javascript: string |