diff options
author | Azul <azul@leap.se> | 2012-12-08 16:05:40 +0100 |
---|---|---|
committer | Azul <azul@leap.se> | 2012-12-08 16:05:40 +0100 |
commit | 0f36c7931fe04bb3d6a3fd70a25fe1090f48e774 (patch) | |
tree | 705212a30f1487787abc8ccf345bc6e0566416e2 /users/app/controllers/v1/users_controller.rb | |
parent | 8282b83c798ba4e5c1e26ec8243b82669b3ee6d4 (diff) |
serve api version 1 in /1/
Just a very simple start for now.
Do we want to use the api for the secure remote password auth from js?
Diffstat (limited to 'users/app/controllers/v1/users_controller.rb')
-rw-r--r-- | users/app/controllers/v1/users_controller.rb | 13 |
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 |