The code powering m.abunchtell.com https://m.abunchtell.com
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.
 
 
 
 

10 lines
271 B

  1. class HomeController < ApplicationController
  2. before_action :authenticate_user!
  3. def index
  4. @body_classes = 'app-body'
  5. @home = Feed.new(:home, current_user.account).get(20)
  6. @mentions = Feed.new(:mentions, current_user.account).get(20)
  7. end
  8. end