dev: instance setup workflow (#2935)
* chore: instance type updated * chore: instance not ready screen added * chore: instance layout added * chore: instance magic sign in endpoint and type added * chore: instance admin password endpoint added * chore: instance setup page added * chore: instance setup form added * chore: instance layout updated * fix: instance admin workflow setup * fix: admin workflow setup --------- Co-authored-by: sriram veeraghanta <veeraghanta.sriram@gmail.com>
This commit is contained in:
parent
ee30eb0590
commit
fd5b7d20a8
25 changed files with 905 additions and 38 deletions
2
web/types/instance.d.ts
vendored
2
web/types/instance.d.ts
vendored
|
|
@ -16,6 +16,8 @@ export interface IInstance {
|
|||
is_support_required: boolean;
|
||||
created_by: string | null;
|
||||
updated_by: string | null;
|
||||
is_activated: boolean;
|
||||
is_setup_done: boolean;
|
||||
}
|
||||
|
||||
export interface IInstanceConfiguration {
|
||||
|
|
|
|||
1
web/types/users.d.ts
vendored
1
web/types/users.d.ts
vendored
|
|
@ -16,6 +16,7 @@ export interface IUser {
|
|||
is_onboarded: boolean;
|
||||
is_password_autoset: boolean;
|
||||
is_tour_completed: boolean;
|
||||
is_password_autoset: boolean;
|
||||
mobile_number: string | null;
|
||||
role: string | null;
|
||||
onboarding_step: {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue