mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
10 lines
233 B
Ruby
10 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
|