1 # frozen_string_literal: true
4 include CanCan::Ability
7 can :create, ChangesetComment if capability?(token, :allow_write_api)
8 can [:create, :comment, :close, :reopen], Note if capability?(token, :allow_write_notes)
9 can [:read, :read_one], UserPreference if capability?(token, :allow_read_prefs)
10 can [:update, :update_one, :delete_one], UserPreference if capability?(token, :allow_write_prefs)
12 if token&.user&.moderator?
13 can [:destroy, :restore], ChangesetComment if capability?(token, :allow_write_api)
14 can :destroy, Note if capability?(token, :allow_write_notes)
20 def capability?(token, cap)
21 token&.read_attribute(cap)