Skip to content

Commit

Permalink
fix: Add missing role
Browse files Browse the repository at this point in the history
  • Loading branch information
JeangelLF committed Sep 19, 2024
1 parent cf8c701 commit 069da2b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion graphql/appointment/fields.ts
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ export class ExtendedFieldsLectureResolver {
return isParticipant;
}
@FieldResolver((returns) => [AppointmentParticipant], { nullable: true })
@Authorized(Role.OWNER, Role.APPOINTMENT_PARTICIPANT, Role.ADMIN)
@Authorized(Role.OWNER, Role.APPOINTMENT_PARTICIPANT, Role.ADMIN, Role.COURSE_SCREENER)
@LimitEstimated(30)
async participants(
@Ctx() context: GraphQLContext,
Expand Down

0 comments on commit 069da2b

Please sign in to comment.