Class: Ishapi::My::VideosController

Inherits:
ApplicationController
  • Object
show all
Defined in:
app/controllers/ishapi/my/videos_controller.rb

Instance Method Summary collapse

Instance Method Details

#indexObject



4
5
6
7
# File 'app/controllers/ishapi/my/videos_controller.rb', line 4

def index
  authorize! :my_index, Video
  @videos = @current_user.profile.videos.unscoped.where( is_trash: false ).order_by( created_at: :desc ).limit(20)
end