a simple comment policy

This commit is contained in:
Mark Moser
2017-02-13 15:04:47 -06:00
parent 43c77677f6
commit d3a2870747
2 changed files with 48 additions and 0 deletions

View File

@ -0,0 +1,21 @@
# frozen_string_literal: true
class QuizCommentPolicy < ApplicationPolicy
# Quiz Comment Policy
#
# Anyone with access to the results can comment
# Only Comment owner can edit
def create?
user.acts_as_reviewer?
end
def update?
user.acts_as_reviewer? && user.id == record.user_id
end
class Scope < Scope
def resolve
true
end
end
end