Skip to content

Commit

Permalink
Refactor Activity entity to include user information in applicants
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeCarillo committed May 10, 2024
1 parent ed57550 commit dfccb8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/structure/entities/Activity.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class ActivityProps {
type_activity: ActivityTypeEnum;
created_at: Date;
updated_at: Date;
applicants: {id: string, status: boolean}[];
applicants: {id: string, status: boolean, user?: User}[];
}

export class Activity {
Expand Down

0 comments on commit dfccb8a

Please sign in to comment.