feat: add setup wizard
This commit is contained in:
@@ -4,4 +4,10 @@ type Config = {
|
||||
type: string;
|
||||
};
|
||||
|
||||
export type AdminConfig = Config & {
|
||||
updatedAt: Date;
|
||||
secret: boolean;
|
||||
description: string;
|
||||
};
|
||||
|
||||
export default Config;
|
||||
|
||||
@@ -3,6 +3,7 @@ export default interface User {
|
||||
firstName?: string;
|
||||
lastName?: string;
|
||||
email: string;
|
||||
isAdmin: boolean;
|
||||
}
|
||||
|
||||
export interface CurrentUser extends User {}
|
||||
|
||||
Reference in New Issue
Block a user