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.

21 lines
736 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 = find_or_create_access_token.token
  7. @web_settings = Web::Setting.find_by(user: current_user)&.data || {}
  8. end
  9. private
  10. def authenticate_user!
  11. redirect_to(Rails.configuration.x.single_user_mode ? account_path(Account.first) : about_path) unless user_signed_in?
  12. end
  13. def find_or_create_access_token
  14. Doorkeeper::AccessToken.find_or_create_for(Doorkeeper::Application.where(superapp: true).first, current_user.id, 'read write follow', Doorkeeper.configuration.access_token_expires_in, Doorkeeper.configuration.refresh_token_enabled?)
  15. end
  16. end