- added settings page and function

- add Role Ring for avatar and display role for user nav
This commit is contained in:
2026-01-06 21:37:53 +07:00
parent 8146565d2c
commit a4e96fe045
64 changed files with 2828 additions and 726 deletions

View File

@@ -268,7 +268,7 @@ export type InvitationScalarWhereWithAggregatesInput = {
}
export type InvitationCreateInput = {
id: string
id?: string
email: string
role?: string | null
status?: string
@@ -279,7 +279,7 @@ export type InvitationCreateInput = {
}
export type InvitationUncheckedCreateInput = {
id: string
id?: string
organizationId: string
email: string
role?: string | null
@@ -312,7 +312,7 @@ export type InvitationUncheckedUpdateInput = {
}
export type InvitationCreateManyInput = {
id: string
id?: string
organizationId: string
email: string
role?: string | null
@@ -470,7 +470,7 @@ export type InvitationUncheckedUpdateManyWithoutOrganizationNestedInput = {
}
export type InvitationCreateWithoutUserInput = {
id: string
id?: string
email: string
role?: string | null
status?: string
@@ -480,7 +480,7 @@ export type InvitationCreateWithoutUserInput = {
}
export type InvitationUncheckedCreateWithoutUserInput = {
id: string
id?: string
organizationId: string
email: string
role?: string | null
@@ -530,7 +530,7 @@ export type InvitationScalarWhereInput = {
}
export type InvitationCreateWithoutOrganizationInput = {
id: string
id?: string
email: string
role?: string | null
status?: string
@@ -540,7 +540,7 @@ export type InvitationCreateWithoutOrganizationInput = {
}
export type InvitationUncheckedCreateWithoutOrganizationInput = {
id: string
id?: string
email: string
role?: string | null
status?: string
@@ -576,7 +576,7 @@ export type InvitationUpdateManyWithWhereWithoutOrganizationInput = {
}
export type InvitationCreateManyUserInput = {
id: string
id?: string
organizationId: string
email: string
role?: string | null
@@ -616,7 +616,7 @@ export type InvitationUncheckedUpdateManyWithoutUserInput = {
}
export type InvitationCreateManyOrganizationInput = {
id: string
id?: string
email: string
role?: string | null
status?: string