X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/ca596106f5e2a42940db5bbdf45a677b328794d6..c7a7d298133b9df8ca3f341bdee47e02cb54cc51:/app/abilities/ability.rb diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index d0e0b65d7..1fcf6cbee 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -16,13 +16,16 @@ class Ability if user can :welcome, :site - can :create, ChangesetComment can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry can [:close, :reopen], Note can [:new, :create], Report can [:account, :go_public, :make_friend, :remove_friend, :api_details, :api_gpx_files], User can [:read, :read_one, :update, :update_one, :delete_one], UserPreference + if user.terms_agreed? || !REQUIRE_TERMS_AGREED # rubocop:disable Style/IfUnlessModifier + can :create, ChangesetComment + end + if user.moderator? can [:destroy, :restore], ChangesetComment can [:index, :show, :resolve, :ignore, :reopen], Issue