about summary refs log tree commit diff stats
path: root/app/controllers
diff options
context:
space:
mode:
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/pokeviewer/uploader_controller.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/app/controllers/pokeviewer/uploader_controller.rb b/app/controllers/pokeviewer/uploader_controller.rb new file mode 100644 index 0000000..dbef241 --- /dev/null +++ b/app/controllers/pokeviewer/uploader_controller.rb
@@ -0,0 +1,13 @@
1require_dependency "pokeviewer/application_controller"
2
3module Pokeviewer
4 class UploaderController < ApplicationController
5 skip_before_action :verify_authenticity_token
6
7 def submit
8 ExtractSaveDataJob.perform_later params[:game].as_json
9
10 render json: { message: "Data submitted for processing." }
11 end
12 end
13end