30 lines
735 B
Ruby
30 lines
735 B
Ruby
# Controller for viewing a repository's file structure
|
|
class TreeController < ProjectResourceController
|
|
include ExtractsPath
|
|
|
|
# Authorize
|
|
before_filter :authorize_read_project!
|
|
before_filter :authorize_code_access!
|
|
before_filter :require_non_empty_project
|
|
|
|
before_filter :assign_ref_vars
|
|
|
|
def show
|
|
@hex_path = Digest::SHA1.hexdigest(@path)
|
|
@logs_path = logs_file_project_ref_path(@project, @ref, @path)
|
|
|
|
respond_to do |format|
|
|
format.html
|
|
# Disable cache so browser history works
|
|
format.js { no_cache_headers }
|
|
end
|
|
end
|
|
|
|
def edit
|
|
@last_commit = @project.commits(@ref, @path, 1).first.sha
|
|
end
|
|
|
|
def update
|
|
last_commit = @project.commits(@ref, @path, 1).first.sha
|
|
end
|
|
end
|