mirror of
https://github.com/Chocobozzz/PeerTube.git
synced 2025-02-25 18:55:32 -06:00
Add about page
This commit is contained in:
7
shared/models/config/about.model.ts
Normal file
7
shared/models/config/about.model.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface About {
|
||||
instance: {
|
||||
name: string
|
||||
description: string
|
||||
terms: string
|
||||
}
|
||||
}
|
||||
@@ -1,11 +1,18 @@
|
||||
export interface ServerConfig {
|
||||
serverVersion: string,
|
||||
serverVersion: string
|
||||
|
||||
instance: {
|
||||
name: string
|
||||
}
|
||||
|
||||
signup: {
|
||||
allowed: boolean
|
||||
}
|
||||
|
||||
transcoding: {
|
||||
enabledResolutions: number[]
|
||||
}
|
||||
|
||||
avatar: {
|
||||
file: {
|
||||
size: {
|
||||
@@ -14,6 +21,7 @@ export interface ServerConfig {
|
||||
extensions: string[]
|
||||
}
|
||||
}
|
||||
|
||||
video: {
|
||||
file: {
|
||||
extensions: string[]
|
||||
|
||||
Reference in New Issue
Block a user