mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 21:26:07 +10:00
12 lines
314 B
Ruby
12 lines
314 B
Ruby
# Provides a base class for Admin controllers to subclass
|
|
#
|
|
# Automatically sets the layout and ensures an administrator is logged in
|
|
class Admin::Projects::ApplicationController < Admin::ApplicationController
|
|
|
|
protected
|
|
|
|
def project
|
|
@project ||= Project.find_with_namespace(params[:project_id])
|
|
end
|
|
end
|