Admin plugin

after upgrade to latest Admin plugin not works, any one same problem or my config?
2 Replies
j_slno
j_slno2mo ago
whats the error? Unauthorized? make sure to upgrade to latest version
yasserconnect
yasserconnectOP5w ago
yes, kind of not show any list of users i'm in latest version auth.ts
admin({
adminRole: ['ADMIN'],
defaultRole: 'COMPANY',
adminUserIds: ['cljlpoqzz0000q94giwo6pd5z'],
roles: {
ADMIN: undefined,
ADMINHIDDEN: undefined,
SUPERVISOR: undefined,
SUPPORT: undefined,
STAFF: undefined,
COMPANY: undefined,
LAB: undefined,
},
}),
admin({
adminRole: ['ADMIN'],
defaultRole: 'COMPANY',
adminUserIds: ['cljlpoqzz0000q94giwo6pd5z'],
roles: {
ADMIN: undefined,
ADMINHIDDEN: undefined,
SUPERVISOR: undefined,
SUPPORT: undefined,
STAFF: undefined,
COMPANY: undefined,
LAB: undefined,
},
}),
schema:
model User {
id String @id @default(cuid())
createdAt DateTime @default(now()) @db.Timestamptz(6)
updatedAt DateTime @updatedAt @db.Timestamptz(6)
username String @unique
name String?
name_en String?
displayUsername String?
image String?
role Role


enum Role {
ADMIN
ADMINHIDDEN
SUPERVISOR
STAFF
COMPANY
}
model User {
id String @id @default(cuid())
createdAt DateTime @default(now()) @db.Timestamptz(6)
updatedAt DateTime @updatedAt @db.Timestamptz(6)
username String @unique
name String?
name_en String?
displayUsername String?
image String?
role Role


enum Role {
ADMIN
ADMINHIDDEN
SUPERVISOR
STAFF
COMPANY
}
how can edit admin in auth.ts so can admin access the admin panel? fixed after upgrade to 1.2.3.

Did you find this page helpful?