mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-10 13:16:09 +10:00
with existing method_missing. Pattern already used extensively, so let's be consistent and use it everywhere.
9 lines
224 B
Ruby
9 lines
224 B
Ruby
class Projects::BaseTreeController < Projects::ApplicationController
|
|
include ExtractsPath
|
|
|
|
before_filter :authorize_read_project!
|
|
before_filter :authorize_download_code!
|
|
before_filter :require_non_empty_project
|
|
end
|
|
|