2012-09-17 12:38:59 -04:00
|
|
|
# Controller for viewing a repository's file structure
|
2012-09-27 14:59:42 -04:00
|
|
|
class TreeController < ProjectResourceController
|
2012-09-20 13:55:14 -04:00
|
|
|
include ExtractsPath
|
2012-09-17 12:38:59 -04:00
|
|
|
|
|
|
|
# Authorize
|
|
|
|
before_filter :authorize_read_project!
|
|
|
|
before_filter :authorize_code_access!
|
|
|
|
before_filter :require_non_empty_project
|
|
|
|
|
|
|
|
def show
|
|
|
|
respond_to do |format|
|
|
|
|
format.html
|
|
|
|
# Disable cache so browser history works
|
|
|
|
format.js { no_cache_headers }
|
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|