mirror of
https://github.com/lingble/chatwoot.git
synced 2025-10-31 19:17:48 +00:00
Bug: Fix signup 500 error (#389)
This commit is contained in:
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user