summaryrefslogtreecommitdiff
path: root/users/app/controllers/v1/users_controller.rb
diff options
context:
space:
mode:
Diffstat (limited to 'users/app/controllers/v1/users_controller.rb')
-rw-r--r--users/app/controllers/v1/users_controller.rb13
1 files changed, 13 insertions, 0 deletions
diff --git a/users/app/controllers/v1/users_controller.rb b/users/app/controllers/v1/users_controller.rb
new file mode 100644
index 0000000..eda2fad
--- /dev/null
+++ b/users/app/controllers/v1/users_controller.rb
@@ -0,0 +1,13 @@
+module V1
+ class UsersController < ApplicationController
+
+ skip_before_filter :verify_authenticity_token, :only => [:create]
+
+ respond_to :json
+
+ def create
+ @user = User.create(params[:user])
+ respond_with @user
+ end
+ end
+end