- 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

@@ -256,7 +256,7 @@ export type OrganizationScalarWhereWithAggregatesInput = {
}
export type OrganizationCreateInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -268,7 +268,7 @@ export type OrganizationCreateInput = {
}
export type OrganizationUncheckedCreateInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -304,7 +304,7 @@ export type OrganizationUncheckedUpdateInput = {
}
export type OrganizationCreateManyInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -397,7 +397,7 @@ export type OrganizationUpdateOneRequiredWithoutInvitationsNestedInput = {
}
export type OrganizationCreateWithoutMembersInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -408,7 +408,7 @@ export type OrganizationCreateWithoutMembersInput = {
}
export type OrganizationUncheckedCreateWithoutMembersInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -457,7 +457,7 @@ export type OrganizationUncheckedUpdateWithoutMembersInput = {
}
export type OrganizationCreateWithoutInvitationsInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null
@@ -468,7 +468,7 @@ export type OrganizationCreateWithoutInvitationsInput = {
}
export type OrganizationUncheckedCreateWithoutInvitationsInput = {
id: string
id?: string
name: string
slug: string
logo?: string | null