You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
27 lines
425 B
27 lines
425 B
# frozen_string_literal: true |
|
|
|
class AboutController < ApplicationController |
|
layout 'public' |
|
|
|
before_action :set_instance_presenter, only: [:show, :more, :terms] |
|
|
|
def show |
|
@hide_navbar = true |
|
end |
|
|
|
def more; end |
|
|
|
def terms; end |
|
|
|
private |
|
|
|
def new_user |
|
User.new.tap(&:build_account) |
|
end |
|
|
|
helper_method :new_user |
|
|
|
def set_instance_presenter |
|
@instance_presenter = InstancePresenter.new |
|
end |
|
end
|
|
|