mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 20:56:08 +10:00
11 lines
209 B
Ruby
11 lines
209 B
Ruby
module Ci
|
|
module Admin
|
|
class ApplicationController < Ci::ApplicationController
|
|
before_action :authenticate_user!
|
|
before_action :authenticate_admin!
|
|
|
|
layout "ci/admin"
|
|
end
|
|
end
|
|
end
|