summaryrefslogtreecommitdiff
path: root/app/controllers/v1/users_controller.rb
diff options
context:
space:
mode:
authorFolker Bernitt <fbernitt@thoughtworks.com>2014-07-10 17:58:32 +0200
committerFolker Bernitt <fbernitt@thoughtworks.com>2014-07-11 10:44:21 +0200
commit140155f32a9bd8ef2d5a581a1e56701a44a8f5a7 (patch)
tree858f22fd9167b490b8b3fcaed2884215d0f0018a /app/controllers/v1/users_controller.rb
parentc9dd5a342f902b27aec73af24776025a03feda48 (diff)
Added allow_registration toggle.
- default is true - See issue #5217 - See companion change in leap_platform.
Diffstat (limited to 'app/controllers/v1/users_controller.rb')
-rw-r--r--app/controllers/v1/users_controller.rb8
1 files changed, 6 insertions, 2 deletions
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