From 0f36c7931fe04bb3d6a3fd70a25fe1090f48e774 Mon Sep 17 00:00:00 2001 From: Azul Date: Sat, 8 Dec 2012 16:05:40 +0100 Subject: 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? --- users/app/controllers/v1/users_controller.rb | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 users/app/controllers/v1/users_controller.rb (limited to 'users/app/controllers/v1/users_controller.rb') 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 -- cgit v1.2.3