diff options
Diffstat (limited to 'app/controllers/api/agents_controller.rb')
| -rw-r--r-- | app/controllers/api/agents_controller.rb | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/app/controllers/api/agents_controller.rb b/app/controllers/api/agents_controller.rb new file mode 100644 index 0000000..16174b1 --- /dev/null +++ b/app/controllers/api/agents_controller.rb @@ -0,0 +1,15 @@ +module Api + class AgentsController < ApplicationController + #before_action do + #request.format = :json + #end + + def create + @agent = Agent.create!(agent_params) + end + + def agent_params + params.require(:agent).permit(:hostname) + end + end +end |
