Refactor users_controller to use CanCanCan for authorisation
This commit is contained in:
parent
981e4a34b5
commit
ca596106f5
5 changed files with 21 additions and 35 deletions
|
@ -6,6 +6,8 @@ class Capability
|
|||
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)
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue