20 lines
506 B
Ruby
20 lines
506 B
Ruby
module Api
|
|
module V1
|
|
class ClientsController < Api::V1::BaseController
|
|
respond_to :json
|
|
|
|
def create
|
|
@client = Client.create(client_params)
|
|
respond_with(@client, :success => true)
|
|
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, :university, :department, :email, :country, :url)
|
|
end
|
|
end
|
|
end
|
|
end
|