fixed object name in json

This commit is contained in:
Saurabh Bhatia 2014-02-19 16:12:32 +08:00
parent f338593bee
commit 9371542966
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@ module Api
def create
@client = Client.new(client_params)
if @client.save
render :json => { :success => true, :user => @client.to_json }
render :json => { :success => true, :client => @client.to_json }
else
render :json => { :errors => @client.errors.full_messages , :status => 422}.to_json
end