Skip to content

Commit

Permalink
feat: Return Privo information from PrismaAuthStore
Browse files Browse the repository at this point in the history
  • Loading branch information
KallynGowdy committed Oct 27, 2023
1 parent 6d6bab6 commit 74ba390
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/aux-server/aux-backend/prisma/PrismaAuthStore.ts
Original file line number Diff line number Diff line change
Expand Up @@ -732,6 +732,10 @@ export class PrismaAuthStore implements AuthStore {
banTimeMs: convertToMillis(user.banTime),
banReason: user.banReason as AuthUser['banReason'],
subscriptionId: user.subscriptionId as string | undefined,
privoServiceId: user.privoServiceId as string | undefined,
privoParentServiceId: user.privoParentServiceId as
| string
| undefined,
};
}
return null;
Expand Down

0 comments on commit 74ba390

Please sign in to comment.