class Wco::PhotosController

def index

def index
  authorize! :index, Wco::Photo
  @photos = Wco::Photo.where( user_profile: @current_profile ).page( params[:photos_page] )
end