add cancan for authorization
This commit is contained in:
@@ -9,6 +9,9 @@ class AccountsController < ApplicationController
|
||||
'de-DE' => 'German (Germany)'
|
||||
}.freeze
|
||||
|
||||
before_action :load_account
|
||||
authorize_resource :account
|
||||
|
||||
def show; end
|
||||
|
||||
def update
|
||||
@@ -35,6 +38,10 @@ class AccountsController < ApplicationController
|
||||
|
||||
private
|
||||
|
||||
def load_account
|
||||
@account = current_account
|
||||
end
|
||||
|
||||
def account_params
|
||||
params.require(:account).permit(:name, :timezone, :locale)
|
||||
end
|
||||
|
||||
Reference in New Issue
Block a user