panda/app/controllers/dashboard.rb

8 строки
136 B
Ruby

class Dashboard < Application
before :require_login
def index
@queued_encodings = Video.queued_encodings
render
end
end