23 lines
451 B
Ruby
23 lines
451 B
Ruby
class SettingsNotifierPolicy < ApplicationPolicy
|
|
|
|
# Public: Get list of parameters that the user is allowed to alter.
|
|
#
|
|
# Returns Array
|
|
def permitted_attributes
|
|
%i(
|
|
can_notify
|
|
update_code
|
|
new_comment_commit_owner
|
|
new_comment_commit_repo_owner
|
|
new_comment_commit_commentor
|
|
new_comment
|
|
new_comment_reply
|
|
new_issue
|
|
issue_assign
|
|
new_build
|
|
new_associated_build
|
|
)
|
|
end
|
|
|
|
end
|