c4e2a84f65
* Feature: Agent Profile Update with avatar * Add Update Profile with name, avatar, email and password
21 lines
362 B
Ruby
21 lines
362 B
Ruby
class Api::V1::ProfilesController < Api::BaseController
|
|
before_action :set_user
|
|
|
|
def show
|
|
render json: @user
|
|
end
|
|
|
|
def update
|
|
@user.update!(profile_params)
|
|
end
|
|
|
|
private
|
|
|
|
def set_user
|
|
@user = current_user
|
|
end
|
|
|
|
def profile_params
|
|
params.require(:profile).permit(:email, :name, :password, :password_confirmation, :avatar)
|
|
end
|
|
end
|