summaryrefslogtreecommitdiff
path: root/app/controllers
diff options
context:
space:
mode:
authorazul <azul@leap.se>2014-07-11 13:00:27 +0200
committerazul <azul@leap.se>2014-07-11 13:00:27 +0200
commit1c7308207a9ab46cfb60c72aceaee2b3c82281fe (patch)
tree858f22fd9167b490b8b3fcaed2884215d0f0018a /app/controllers
parentc9dd5a342f902b27aec73af24776025a03feda48 (diff)
parent140155f32a9bd8ef2d5a581a1e56701a44a8f5a7 (diff)
Merge pull request #178 from fbernitt/issue_5217_allow_registration
Added allow_registration toggle.
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/users_controller.rb6
-rw-r--r--app/controllers/v1/users_controller.rb8
2 files changed, 11 insertions, 3 deletions
diff --git a/app/controllers/users_controller.rb b/app/controllers/users_controller.rb
index 5951413..a623653 100644
--- a/app/controllers/users_controller.rb
+++ b/app/controllers/users_controller.rb
@@ -26,7 +26,11 @@ class UsersController < UsersBaseController
end
def new
- @user = User.new
+ if APP_CONFIG[:allow_registration]
+ @user = User.new
+ else
+ redirect_to home_path
+ end
end
def show
diff --git a/app/controllers/v1/users_controller.rb b/app/controllers/v1/users_controller.rb
index 006e6d8..881708a 100644
--- a/app/controllers/v1/users_controller.rb
+++ b/app/controllers/v1/users_controller.rb
@@ -19,8 +19,12 @@ module V1
end
def create
- @user = Account.create(params[:user])
- respond_with @user # return ID instead?
+ if APP_CONFIG[:allow_registration]
+ @user = Account.create(params[:user])
+ respond_with @user # return ID instead?
+ else
+ head :forbidden
+ end
end
def update