2016-02-22 16:00:20 +01:00
|
|
|
class HomeController < ApplicationController
|
2016-03-06 17:52:23 +01:00
|
|
|
before_action :authenticate_user!
|
|
|
|
|
2016-02-22 16:00:20 +01:00
|
|
|
def index
|
2016-08-24 17:56:44 +02: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 19:12:19 +02:00
|
|
|
@token = find_or_create_access_token.token
|
|
|
|
end
|
|
|
|
|
|
|
|
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 16:09:46 +01:00
|
|
|
end
|
2016-02-22 16:00:20 +01:00
|
|
|
end
|