2016-11-15 10:56:29 -05:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
2016-09-27 17:12:33 -04:00
|
|
|
class AboutController < ApplicationController
|
2017-11-21 01:13:37 -05:00
|
|
|
before_action :set_pack
|
2019-03-12 12:34:00 -04:00
|
|
|
layout 'public'
|
|
|
|
|
2017-07-04 09:19:24 -04:00
|
|
|
before_action :set_instance_presenter, only: [:show, :more, :terms]
|
2016-11-01 13:03:51 -04:00
|
|
|
|
2017-07-11 09:27:59 -04:00
|
|
|
def show
|
2019-03-12 12:34:00 -04:00
|
|
|
@hide_navbar = true
|
2017-07-11 09:27:59 -04:00
|
|
|
end
|
2017-04-01 22:10:22 -04:00
|
|
|
|
2019-03-12 12:34:00 -04:00
|
|
|
def more; end
|
2017-01-12 21:24:41 -05:00
|
|
|
|
2019-03-12 12:34:00 -04:00
|
|
|
def terms; end
|
2016-11-01 13:03:51 -04:00
|
|
|
|
|
|
|
private
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
def new_user
|
2019-04-09 10:06:30 -04:00
|
|
|
User.new.tap do |user|
|
|
|
|
user.build_account
|
|
|
|
user.build_invite_request
|
|
|
|
end
|
2017-04-09 08:47:25 -04:00
|
|
|
end
|
2017-07-11 09:27:59 -04:00
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
helper_method :new_user
|
|
|
|
|
2017-11-21 01:13:37 -05:00
|
|
|
def set_pack
|
2019-03-13 10:16:02 -04:00
|
|
|
use_pack 'common'
|
2017-11-21 01:13:37 -05:00
|
|
|
end
|
|
|
|
|
2017-04-09 08:47:25 -04:00
|
|
|
def set_instance_presenter
|
|
|
|
@instance_presenter = InstancePresenter.new
|
|
|
|
end
|
2016-09-27 17:12:33 -04:00
|
|
|
end
|