2016-11-15 16:56:29 +01:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 02:28:49 +02:00
|
|
|
class Settings::ProfilesController < ApplicationController
|
2016-09-25 15:48:20 +02:00
|
|
|
layout 'auth'
|
2016-09-29 21:28:21 +02:00
|
|
|
|
2016-03-12 20:47:22 +01:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
2016-10-14 02:28:49 +02:00
|
|
|
redirect_to settings_profile_path, notice: 'Changes successfully saved!'
|
2016-03-12 20:47:22 +01:00
|
|
|
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
|