mirror of
https://github.com/lunaisnotaboy/mastodon.git
synced 2024-11-01 20:45:56 +00:00
5085559b15
Conflicts: - app/views/admin/pending_accounts/index.html.haml No real conflict, upstream changes too close to glitch-specific theming system changes. - config/navigation.rb Upstream redesigned the settings navigation, took those changes and re-inserted the flavours menu.
36 lines
553 B
Ruby
36 lines
553 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 do |user|
|
|
user.build_account
|
|
user.build_invite_request
|
|
end
|
|
end
|
|
|
|
helper_method :new_user
|
|
|
|
def set_pack
|
|
use_pack 'common'
|
|
end
|
|
|
|
def set_instance_presenter
|
|
@instance_presenter = InstancePresenter.new
|
|
end
|
|
end
|