This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2016-02-22 07:00:20 -08:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 08:52:23 -08:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 07:00:20 -08:00
|
|
|
def index
|
2016-08-24 08:56:44 -07:00
|
|
|
@body_classes = 'app-body'
|
|
|
|
@home = Feed.new(:home, current_user.account).get(20)
|
|
|
|
@mentions = Feed.new(:mentions, current_user.account).get(20)
|
2016-08-26 10:12:19 -07:00
|
|
|
@token = find_or_create_access_token.token
|
|
|
|
end
|
2016-09-26 14:55:21 -07:00
|
|
|
|
2016-08-26 10:12:19 -07:00
|
|
|
private
|
|
|
|
|
|
|
|
def find_or_create_access_token
|
|
|
|
Doorkeeper::AccessToken.find_or_create_for(Doorkeeper::Application.where(superapp: true).first, current_user.id, nil, Doorkeeper.configuration.access_token_expires_in, Doorkeeper.configuration.refresh_token_enabled?)
|
2016-03-12 07:09:46 -08:00
|
|
|
end
|
2016-02-22 07:00:20 -08:00
|
|
|
end
|