feat: Add user registration via Web UI

This commit is contained in:
Jesse Wierzbinski 2023-12-08 18:45:36 -10:00
parent 1c295b4d8d
commit d79e718e15
No known key found for this signature in database
12 changed files with 215 additions and 11 deletions

View file

@ -50,6 +50,12 @@ export interface ConfigType {
enabled: boolean;
};
signups: {
tos_url: string;
rules: string[];
registration: boolean;
};
oidc: {
providers: {
name: string;
@ -218,6 +224,11 @@ export const configDefaults: ConfigType = {
api_key: "",
enabled: false,
},
signups: {
tos_url: "",
rules: [],
registration: false,
},
oidc: {
providers: [],
},