Bug: Fix signup 500 error (#389)
This commit is contained in:
parent
f55c42d5a1
commit
005ca62c6e
1 changed files with 5 additions and 2 deletions
|
@ -11,7 +11,10 @@ class Api::V1::AccountsController < Api::BaseController
|
||||||
with: :render_error_response
|
with: :render_error_response
|
||||||
|
|
||||||
def create
|
def create
|
||||||
@user = AccountBuilder.new(account_params).perform
|
@user = AccountBuilder.new(
|
||||||
|
account_name: account_params[:account_name],
|
||||||
|
email: account_params[:email]
|
||||||
|
).perform
|
||||||
if @user
|
if @user
|
||||||
send_auth_headers(@user)
|
send_auth_headers(@user)
|
||||||
render json: {
|
render json: {
|
||||||
|
@ -25,6 +28,6 @@ class Api::V1::AccountsController < Api::BaseController
|
||||||
private
|
private
|
||||||
|
|
||||||
def account_params
|
def account_params
|
||||||
params.permit(:account_name, :email).to_h
|
params.permit(:account_name, :email)
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue