Require terms agreement for abilities and capabilities related to api write methods
This commit is contained in:
parent
4b0fed0aa4
commit
c7a7d29813
3 changed files with 77 additions and 2 deletions
|
@ -4,13 +4,16 @@ class Capability
|
|||
include CanCan::Ability
|
||||
|
||||
def initialize(token)
|
||||
can :create, ChangesetComment if capability?(token, :allow_write_api)
|
||||
can [:create, :comment, :close, :reopen], Note if capability?(token, :allow_write_notes)
|
||||
can [:api_details], User if capability?(token, :allow_read_prefs)
|
||||
can [:api_gpx_files], User if capability?(token, :allow_read_gpx)
|
||||
can [:read, :read_one], UserPreference if capability?(token, :allow_read_prefs)
|
||||
can [:update, :update_one, :delete_one], UserPreference if capability?(token, :allow_write_prefs)
|
||||
|
||||
if token&.user&.terms_agreed? || !REQUIRE_TERMS_AGREED
|
||||
can :create, ChangesetComment if capability?(token, :allow_write_api)
|
||||
end
|
||||
|
||||
if token&.user&.moderator?
|
||||
can [:destroy, :restore], ChangesetComment if capability?(token, :allow_write_api)
|
||||
can :destroy, Note if capability?(token, :allow_write_notes)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue