debian-mirror-gitlab/app/controllers/ci/admin/events_controller.rb
2015-09-25 12:07:36 +05:30

9 lines
233 B
Ruby

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