Fix task and shift self-assignment features
CI Pipeline / Backend Build & Test (pull_request) Successful in 48s
CI Pipeline / Frontend Lint, Test & Build (pull_request) Failing after 28s
CI Pipeline / Infrastructure Validation (pull_request) Successful in 4s

This commit is contained in:
WorkClub Automation
2026-03-09 15:47:57 +01:00
parent 271b3c189c
commit 672dec5f21
17 changed files with 400 additions and 62 deletions
+2
View File
@@ -16,6 +16,7 @@ export interface ShiftListItemDto {
endTime: string;
capacity: number;
currentSignups: number;
isSignedUp: boolean;
}
export interface ShiftDetailDto {
@@ -31,6 +32,7 @@ export interface ShiftDetailDto {
createdById: string;
createdAt: string;
updatedAt: string;
isSignedUp: boolean;
}
export interface ShiftSignupDto {