yasserconnect
yasserconnect
Explore posts from servers
BABetter Auth
Created by yasserconnect on 3/20/2025 in #bug-reports
Network error!
Sometimes, my users report encountering a sudden "Network error." The issue occurs unexpectedly, but when they sign in from another device, it works fine, and the error resolves on its own after some time. What could be the root cause of this issue, and how can I effectively fix it? CC @bekacru
2 replies
BABetter Auth
Created by yasserconnect on 3/6/2025 in #help
Admin plugin authorization
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
}
after upgrade to latest version، Admin plugin not works! how can edit admin in auth.ts config so can admin access the admin panel?
4 replies
BABetter Auth
Created by yasserconnect on 3/4/2025 in #bug-reports
Admin plugin
after upgrade to latest Admin plugin not works, any one same problem or my config?
7 replies
BABetter Auth
Created by yasserconnect on 1/25/2025 in #help
error when want to create a passkey
error: "Failed to verify registration" how to fx it?
1 replies
BABetter Auth
Created by yasserconnect on 12/23/2024 in #help
change password as support
await authClient.changePassword({
newPassword: "newPassword123",
currentPassword: "oldPassword123",
revokeOtherSessions: true, // revoke all other sessions the user is signed into
});
await authClient.changePassword({
newPassword: "newPassword123",
currentPassword: "oldPassword123",
revokeOtherSessions: true, // revoke all other sessions the user is signed into
});
how can admin can change a user password as support if not no the currentPassword?
1 replies
BABetter Auth
Created by yasserconnect on 12/21/2024 in #help
session' does not exist in twoFactor
client.twoFactor
.verifyTotp({
code: totpCode,
})
.then((res) => {
if (res.data?.session) {
setSuccess(true);
setError('');
} else {
setError('Invalid TOTP code');
}
});
client.twoFactor
.verifyTotp({
code: totpCode,
})
.then((res) => {
if (res.data?.session) {
setSuccess(true);
setError('');
} else {
setError('Invalid TOTP code');
}
});
Type error: Property 'session' does not exist on type '{ token: string; }'.
4 replies
BABetter Auth
Created by yasserconnect on 12/13/2024 in #bug-reports
warning! better-auth with Turbopack enabled
⚠ ./node_modules/.pnpm/[email protected]/node_modules/better-auth/dist
Package oslo can't be external
The request oslo matches serverExternalPackages (or the default list).
The request could not be resolved by Node.js from the project directory.
Packages that should be external need to be installed in the project directory, so they can be resolved from the output files.
Try to install it into the project directory by running npm install oslo from the project directory.
⚠ ./node_modules/.pnpm/[email protected]/node_modules/better-auth/dist
Package oslo can't be external
The request oslo matches serverExternalPackages (or the default list).
The request could not be resolved by Node.js from the project directory.
Packages that should be external need to be installed in the project directory, so they can be resolved from the output files.
Try to install it into the project directory by running npm install oslo from the project directory.
how to fix that?
2 replies
BABetter Auth
Created by yasserconnect on 12/12/2024 in #help
fix TypeError baseURL
when i try to refresh (dashboard/profile) page i get this error [TypeError: Invalid URL /get-session. Are you passing in a relative URL but not setting the baseURL?] [TypeError: Invalid URL /passkey/list-user-passkeys. Are you passing in a relative URL but not setting the baseURL?] how to fix it?
3 replies
DTDrizzle Team
Created by yasserconnect on 8/1/2024 in #help
[BUG]: orderBy causes relational query to fail
const shipmentQuery = await db.query.shipment.findMany({ with: { products: true, }, // [BUG]: orderBy causes relational query to fail // orderBy: desc(shipment.createdAt), }); same issue here: https://github.com/drizzle-team/drizzle-orm/issues/1249 i cannot use orderBy any fix?
17 replies
DTDrizzle Team
Created by yasserconnect on 7/5/2024 in #help
use limit or undefined
const limit = searchParams?.get('limit'); const shipmentsQuery = db .select() .from(shipment) .orderBy(desc(shipment.createdAt)) .limit(limit? limit : undefined); i want to use limit when is has value if not then use without a limit?
12 replies