X-Git-Url: https://git.openstreetmap.org/rails.git/blobdiff_plain/414c4b2c36bc78ece037e30bf8139b129abcd280..affd87c528c7c57372900f54f5f39915efbc319d:/app/abilities/capability.rb diff --git a/app/abilities/capability.rb b/app/abilities/capability.rb index b6cad3115..d8f51eefe 100644 --- a/app/abilities/capability.rb +++ b/app/abilities/capability.rb @@ -12,13 +12,22 @@ class Capability 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 + if token&.user&.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) + can [:create, :update, :delete], Node if capability?(token, :allow_write_api) + can [:create, :update, :delete], Way if capability?(token, :allow_write_api) + can [:create, :update, :delete], Relation 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) + if token&.user&.terms_agreed? + can :redact, OldNode if capability?(token, :allow_write_api) + can :redact, OldWay if capability?(token, :allow_write_api) + can :redact, OldRelation if capability?(token, :allow_write_api) + end end end