This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-03-12 11:47:22 -08:00
|
|
|
class SettingsController < ApplicationController
|
2016-09-25 06:48:20 -07:00
|
|
|
layout 'auth'
|
2016-09-29 12:28:21 -07:00
|
|
|
|
2016-03-12 11:47:22 -08:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
|
|
|
redirect_to settings_path
|
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
|
|
|
params.require(:account).permit(:display_name, :note, :avatar, :header)
|
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = current_user.account
|
|
|
|
end
|
|
|
|
end
|