2016-11-16 00:56:29 +09:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-10-14 09:28:49 +09:00
|
|
|
class Settings::ProfilesController < ApplicationController
|
2016-09-25 22:48:20 +09:00
|
|
|
layout 'auth'
|
2016-09-30 04:28:21 +09:00
|
|
|
|
2016-03-13 04:47:22 +09:00
|
|
|
before_action :authenticate_user!
|
|
|
|
before_action :set_account
|
|
|
|
|
|
|
|
def show
|
|
|
|
end
|
|
|
|
|
|
|
|
def update
|
|
|
|
if @account.update(account_params)
|
2016-11-16 07:02:57 +09:00
|
|
|
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
|
2016-03-13 04:47:22 +09:00
|
|
|
else
|
|
|
|
render action: :show
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
|
|
|
private
|
|
|
|
|
|
|
|
def account_params
|
2016-11-24 06:00:00 +09:00
|
|
|
p = params.require(:account).permit(:display_name, :note, :avatar, :header, :silenced)
|
|
|
|
if p[:avatar]
|
|
|
|
avatar = p[:avatar]
|
|
|
|
# Change so Paperclip won't expose the actual filename
|
|
|
|
avatar.original_filename = "media" + File.extname(avatar.original_filename)
|
|
|
|
end
|
|
|
|
if p[:header]
|
|
|
|
header = p[:header]
|
|
|
|
# Change so Paperclip won't expose the actual filename
|
|
|
|
header.original_filename = "media" + File.extname(header.original_filename)
|
|
|
|
end
|
|
|
|
p
|
2016-03-13 04:47:22 +09:00
|
|
|
end
|
|
|
|
|
|
|
|
def set_account
|
|
|
|
@account = current_user.account
|
|
|
|
end
|
|
|
|
end
|