1
0
Fork 0
This repository has been archived on 2023-03-27. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/app/controllers/settings/profiles_controller.rb

28 lines
569 B
Ruby
Raw Normal View History

# frozen_string_literal: true
class Settings::ProfilesController < ApplicationController
# GET /settings/profile/edit
def edit
authorize %i[settings profile]
end
# PATCH/PUT /settings/profile
def update
authorize %i[settings profile]
unless current_account.update account_attributes_for_update
return render :edit
end
redirect_to edit_settings_profile_url
end
private
def account_attributes_for_update
params.require(:account).permit(
policy(%i[settings profile]).permitted_attributes_for_update,
)
end
end