Allow updating bio fields via PUT /api/v1/accounts/update_credentials (#7288)

Add raw bio fields to the source attribute on GET /api/v1/accounts/verify_credentials
This commit is contained in:
Eugen Rochko 2018-05-02 15:57:37 +02:00 committed by GitHub
parent f62539ce5c
commit cae933510c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 7 additions and 1 deletions

View File

@ -21,7 +21,7 @@ class Api::V1::Accounts::CredentialsController < Api::BaseController
private
def account_params
params.permit(:display_name, :note, :avatar, :header, :locked)
params.permit(:display_name, :note, :avatar, :header, :locked, fields_attributes: [:name, :value])
end
def user_settings_params

View File

@ -273,6 +273,10 @@ class Account < ApplicationRecord
@value = attr['value']
@errors = {}
end
def to_h
{ name: @name, value: @value }
end
end
class << self

View File

@ -5,10 +5,12 @@ class REST::CredentialAccountSerializer < REST::AccountSerializer
def source
user = object.user
{
privacy: user.setting_default_privacy,
sensitive: user.setting_default_sensitive,
note: object.note,
fields: object.fields.map(&:to_h),
}
end
end