mentorenwahl/docker/backend/src/backend/api/schema/user_role.cr
Dominic Grimm 5bc10f8aaf
Some checks failed
continuous-integration/drone/push Build is failing
Added worker
2022-01-23 09:12:57 +01:00

13 lines
163 B
Crystal

module Backend
module API
module Schema
@[GraphQL::Enum]
enum UserRole
Admin
Teacher
Student
end
end
end
end