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.

19 lines
610 B

  1. # frozen_string_literal: true
  2. class HomeController < ApplicationController
  3. before_action :authenticate_user!
  4. def index
  5. @body_classes = 'app-body'
  6. @token = current_session.token
  7. @web_settings = Web::Setting.find_by(user: current_user)&.data || {}
  8. @admin = Account.find_local(Setting.site_contact_username)
  9. @streaming_api_base_url = Rails.configuration.x.streaming_api_base_url
  10. end
  11. private
  12. def authenticate_user!
  13. redirect_to(single_user_mode? ? account_path(Account.first) : about_path) unless user_signed_in?
  14. end
  15. end