This repository has been archived on 2019-05-14. You can view files and clone it, but cannot push or open issues or pull requests.
mastodon/app/controllers/settings/profiles_controller.rb

41 lines
981 B
Ruby
Raw Normal View History

# frozen_string_literal: true
2016-10-14 00:28:49 +00:00
class Settings::ProfilesController < ApplicationController
2016-09-25 13:48:20 +00:00
layout 'auth'
2016-09-29 19:28:21 +00:00
before_action :authenticate_user!
before_action :set_account
def show
end
def update
if @account.update(account_params)
2016-11-15 22:02:57 +00:00
redirect_to settings_profile_path, notice: I18n.t('generic.changes_saved_msg')
else
render action: :show
end
end
private
def account_params
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
end
def set_account
@account = current_user.account
end
end