]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/blobdiff - shared/models/plugins/register-server-setting.model.ts
Cleanup shared models
[github/Chocobozzz/PeerTube.git] / shared / models / plugins / register-server-setting.model.ts
index 920c3480fc712e054ec3029e4750bcf89286ee9d..9f45c3c370f781a4310466b5cd7dd77d49b0f29b 100644 (file)
@@ -1,15 +1,10 @@
-export interface RegisterServerSettingOptions {
-  name: string
-  label: string
-  type: 'input' | 'input-checkbox' | 'input-textarea' | 'markdown-text' | 'markdown-enhanced'
+import { RegisterClientFormFieldOptions } from './register-client-form-field.model'
 
+export type RegisterServerSettingOptions = RegisterClientFormFieldOptions & {
   // If the setting is not private, anyone can view its value (client code included)
   // If the setting is private, only server-side hooks can access it
   // Mainly used by the PeerTube client to get admin config
   private: boolean
-
-  // Default setting value
-  default?: string | boolean
 }
 
 export interface RegisteredServerSettings {