feat(api): add MS21 user fields for admin, local auth, and invitations
All checks were successful
ci/woodpecker/push/orchestrator Pipeline was successful
ci/woodpecker/push/api Pipeline was successful
ci/woodpecker/push/web Pipeline was successful

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-02-28 11:19:51 -06:00
parent 8098504fb8
commit 443ed2281c
6 changed files with 68 additions and 0 deletions

View File

@@ -27,6 +27,12 @@ export interface User extends BaseEntity {
image: string | null;
authProviderId: string | null;
preferences: Record<string, unknown>;
deactivatedAt: Date | null;
isLocalAuth: boolean;
passwordHash: string | null;
invitedBy: string | null;
invitationToken: string | null;
invitedAt: Date | null;
}
/**