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