summaryrefslogtreecommitdiff
path: root/users/app
diff options
context:
space:
mode:
authorAzul <azul@leap.se>2012-12-12 00:09:57 +0100
committerAzul <azul@leap.se>2012-12-12 00:09:57 +0100
commit0871fd8938952d8b718c64d4d45535f7ae9fd742 (patch)
treeded6504b15bab40b42dd4bd60e4df2571be8bc61 /users/app
parent7a9a4f4e7bd090fd27e05b03f93832d79f5f8db2 (diff)
parent1a26988cb7ff30061473f4a781166b184b3037ce (diff)
Merge branch 'master' into develop
Diffstat (limited to 'users/app')
-rw-r--r--users/app/controllers/v1/sessions_controller.rb28
-rw-r--r--users/app/controllers/v1/users_controller.rb13
-rw-r--r--users/app/models/user.rb2
3 files changed, 43 insertions, 0 deletions
diff --git a/users/app/controllers/v1/sessions_controller.rb b/users/app/controllers/v1/sessions_controller.rb
new file mode 100644
index 0000000..5b4a13b
--- /dev/null
+++ b/users/app/controllers/v1/sessions_controller.rb
@@ -0,0 +1,28 @@
+module V1
+ class SessionsController < ApplicationController
+
+ skip_before_filter :verify_authenticity_token
+
+ def new
+ @session = Session.new
+ if authentication_errors
+ @errors = authentication_errors
+ render :status => 422
+ end
+ end
+
+ def create
+ authenticate!
+ end
+
+ def update
+ authenticate!
+ render :json => session.delete(:handshake)
+ end
+
+ def destroy
+ logout
+ redirect_to root_path
+ end
+ end
+end
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
diff --git a/users/app/models/user.rb b/users/app/models/user.rb
index ae271ce..340ad9c 100644
--- a/users/app/models/user.rb
+++ b/users/app/models/user.rb
@@ -1,5 +1,7 @@
class User < CouchRest::Model::Base
+ use_database :users
+
property :login, String, :accessible => true
property :email, String, :accessible => true
property :email_forward, String, :accessible => true