Gab Social. All are welcome.
This commit is contained in:
35
app/controllers/about_controller.rb
Normal file
35
app/controllers/about_controller.rb
Normal file
@@ -0,0 +1,35 @@
|
||||
# frozen_string_literal: true
|
||||
|
||||
class AboutController < ApplicationController
|
||||
layout 'public'
|
||||
|
||||
before_action :set_instance_presenter, only: [:show, :more, :terms, :privacy, :investors, :guidelines]
|
||||
|
||||
def show
|
||||
if user_signed_in?
|
||||
redirect_to "/home"
|
||||
else
|
||||
@hide_navbar = false
|
||||
end
|
||||
end
|
||||
|
||||
def more; end
|
||||
def terms; end
|
||||
def privacy; end
|
||||
def investors; end
|
||||
|
||||
private
|
||||
|
||||
def new_user
|
||||
User.new.tap do |user|
|
||||
user.build_account
|
||||
user.build_invite_request
|
||||
end
|
||||
end
|
||||
|
||||
helper_method :new_user
|
||||
|
||||
def set_instance_presenter
|
||||
@instance_presenter = InstancePresenter.new
|
||||
end
|
||||
end
|
||||
Reference in New Issue
Block a user