about summary refs log tree commit diff
path: root/app/controllers/about_controller.rb
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-04-02 04:10:22 +0200
committerEugen Rochko <eugen@zeonfederated.com>2017-04-02 04:13:22 +0200
commit433cb198fa930344c7352250dfaae9857f7ba471 (patch)
treed755bc4e1ac329ab2fc8bca489ebff0f122c0c65 /app/controllers/about_controller.rb
parent3ffa27e8129ade27f4f02d462aeab366a1e06b0b (diff)
Fix landing page sign up form ignoring username field
Diffstat (limited to 'app/controllers/about_controller.rb')
-rw-r--r--app/controllers/about_controller.rb3
1 files changed, 3 insertions, 0 deletions
diff --git a/app/controllers/about_controller.rb b/app/controllers/about_controller.rb
index 491036db2..abf4b7df4 100644
--- a/app/controllers/about_controller.rb
+++ b/app/controllers/about_controller.rb
@@ -5,6 +5,9 @@ class AboutController < ApplicationController
 
   def index
     @description = Setting.site_description
+
+    @user = User.new
+    @user.build_account
   end
 
   def more