debian-mirror-gitlab/app/controllers/ci/admin/events_controller.rb

10 lines
233 B
Ruby
Raw Normal View History

2015-09-25 12:07:36 +05:30
module Ci
class Admin::EventsController < Ci::Admin::ApplicationController
EVENTS_PER_PAGE = 50
def index
@events = Ci::Event.admin.order('created_at DESC').page(params[:page]).per(EVENTS_PER_PAGE)
end
end
end