X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/efd50cd529990069dc1ca95f66ec6f61471fe29d..1774109311a1dc859bfec26ef54853b3078577e5:/app/abilities/capability.rb diff --git a/app/abilities/capability.rb b/app/abilities/capability.rb index 2a5c92774..fdc53891a 100644 --- a/app/abilities/capability.rb +++ b/app/abilities/capability.rb @@ -4,8 +4,21 @@ class Capability include CanCan::Ability def initialize(token) + 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, :update, :upload, :close, :subscribe, :unsubscribe, :expand_bbox], Changeset if capability?(token, :allow_write_api) + 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) + end end private