Files
codeocean/app/policies/user_exercise_feedback_policy.rb
Sebastian Serth e9f099d59f Properly nest UserExerciseFeedback
Fixes CODEOCEAN-108
2023-11-23 14:42:10 +01:00

17 lines
271 B
Ruby

# frozen_string_literal: true
class UserExerciseFeedbackPolicy < AdminOrAuthorPolicy
def create?
everyone
end
def new?
everyone
end
def show?
# We don't have a show action, so no one can show a UserExerciseFeedback directly.
no_one
end
end