about summary refs log tree commit diff
path: root/app/controllers
diff options
context:
space:
mode:
authorEugen Rochko <eugen@zeonfederated.com>2017-01-13 03:24:41 +0100
committerEugen Rochko <eugen@zeonfederated.com>2017-01-13 03:24:41 +0100
commite25170f960bdc890e4f8a6b1373ab55192669629 (patch)
tree6a08f8020ede5457a276d99a6c146354eed4db60 /app/controllers
parent2939e9898b1e0e7da6db802a00e594be4c85499d (diff)
Add extended about page stub
Diffstat (limited to 'app/controllers')
-rw-r--r--app/controllers/about_controller.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/app/controllers/about_controller.rb b/app/controllers/about_controller.rb
index 84e5fbbd9..b69c8e790 100644
--- a/app/controllers/about_controller.rb
+++ b/app/controllers/about_controller.rb
@@ -7,6 +7,12 @@ class AboutController < ApplicationController
     @description = Setting.site_description
   end
 
+  def more
+    @extended_description = Setting.site_extended_description
+    @contact_account      = Account.find_local(Setting.site_contact_username)
+    @contact_email        = Setting.site_contact_email
+  end
+
   def terms; end
 
   private