mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-02 13:04:37 +00:00
02062aab55
Conflicts: - app/controllers/about_controller.rb - app/controllers/tags_controller.rb - app/views/about/show.html.haml - spec/views/about/show.html.haml_spec.rb
33 lines
495 B
Ruby
33 lines
495 B
Ruby
# frozen_string_literal: true
|
|
|
|
class AboutController < ApplicationController
|
|
before_action :set_pack
|
|
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_pack
|
|
use_pack 'common'
|
|
end
|
|
|
|
def set_instance_presenter
|
|
@instance_presenter = InstancePresenter.new
|
|
end
|
|
end
|