module-and-template-store/app/controllers/api/v1/clients_controller.rb

19 lines
411 B
Ruby
Raw Normal View History

2014-02-13 06:51:23 +00:00
module Api
module V1
class ClientsController < Api::V1::BaseController
respond_to :json
def create
respond_with Client.create(client_params)
end
private
# Never trust parameters from the scary internet, only allow the white list through.
def client_params
params.require(:client).permit(:site_name, :site_token, :site_id)
end
end
end
end