mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-12 06:06:05 +10:00
12 lines
307 B
Ruby
12 lines
307 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_by_path(params[:project_id])
|
|
end
|
|
end
|