X-Git-Url: https://git.openstreetmap.org./rails.git/blobdiff_plain/368ce0000d585a8bf04e6189c818577756e29c02..a3a10237f7cbd4586086133a926dc4dd9fd5b7bf:/app/abilities/ability.rb diff --git a/app/abilities/ability.rb b/app/abilities/ability.rb index ea60d496f..707272182 100644 --- a/app/abilities/ability.rb +++ b/app/abilities/ability.rb @@ -4,21 +4,29 @@ class Ability include CanCan::Ability def initialize(user) + can :index, ChangesetComment can [:index, :permalink, :edit, :help, :fixthemap, :offline, :export, :about, :preview, :copyright, :key, :id], :site can [:index, :rss, :show, :comments], DiaryEntry can [:search, :search_latlon, :search_ca_postcode, :search_osm_nominatim, :search_geonames, :search_osm_nominatim_reverse, :search_geonames_reverse], :geocoder + can [:index, :create, :comment, :feed, :show, :search, :mine], Note + can [:index, :show], Redaction can [:index, :show, :blocks_on, :blocks_by], UserBlock if user can :welcome, :site + can :create, ChangesetComment can [:create, :edit, :comment, :subscribe, :unsubscribe], DiaryEntry + can [:close, :reopen], Note can [:new, :create], Report can [:read, :read_one, :update, :update_one, :delete_one], UserPreference if user.moderator? + can [:destroy, :restore], ChangesetComment can [:index, :show, :resolve, :ignore, :reopen], Issue can :create, IssueComment + can :destroy, Note + can [:new, :create, :edit, :update, :destroy], Redaction can [:new, :edit, :create, :update, :revoke], UserBlock end @@ -26,6 +34,7 @@ class Ability can [:hide, :hidecomment], [DiaryEntry, DiaryComment] can [:index, :show, :resolve, :ignore, :reopen], Issue can :create, IssueComment + can [:grant, :revoke], UserRole end end