Files
windmill/frontend/src/lib/components/instanceSettings.ts
T
Ruben Fiszel 51255981fa feat: add license key as superadmin setting (#2321)
* license key

* all

* feat: add license key as a superadmin setting

* fix

* fix
2023-09-23 14:40:07 +02:00

22 lines
353 B
TypeScript

export interface Setting {
label: string
description?: string
placeholder?: string
cloudonly?: boolean
tooltip?: string
key: string
fieldType:
| 'text'
| 'number'
| 'boolean'
| 'password'
| 'select'
| 'textarea'
| 'seconds'
| 'email'
| 'license_key'
storage: SettingStorage
}
export type SettingStorage = 'setting' | 'config'