summaryrefslogtreecommitdiff
path: root/app/controllers/account_controller.rb
diff options
context:
space:
mode:
authorAzul <azul@riseup.net>2016-05-23 12:17:31 +0200
committerAzul <azul@riseup.net>2016-05-23 13:01:51 +0200
commitf47fc9d6522886cf81cfea26ec1f396219c539ba (patch)
treeb63490a1e515c211a15b9c3aa062a09927739c77 /app/controllers/account_controller.rb
parent7f0c42a5fa6d6c1952e53b9b73bad0202f746f3e (diff)
move signup from users to account_controller
There was a lot of special case handling going on in the users_controller for this. Lot simpler this way.
Diffstat (limited to 'app/controllers/account_controller.rb')
-rw-r--r--app/controllers/account_controller.rb17
1 files changed, 17 insertions, 0 deletions
diff --git a/app/controllers/account_controller.rb b/app/controllers/account_controller.rb
new file mode 100644
index 0000000..ee7cca4
--- /dev/null
+++ b/app/controllers/account_controller.rb
@@ -0,0 +1,17 @@
+class AccountController < ApplicationController
+
+ before_filter :require_registration_allowed
+ before_filter :redirect_if_logged_in
+
+ def new
+ @user = User.new
+ end
+
+ protected
+
+ def require_registration_allowed
+ unless APP_CONFIG[:allow_registration]
+ redirect_to home_path
+ end
+ end
+end