gitlab-org--gitlab-foss/app/controllers/projects/blob_controller.rb

16 lines
385 B
Ruby
Raw Normal View History

2012-09-17 13:49:57 -04:00
# Controller for viewing a file's blame
class Projects::BlobController < Projects::ApplicationController
include ExtractsPath
2012-09-17 13:49:57 -04:00
# Authorize
before_filter :authorize_read_project!
before_filter :authorize_code_access!
before_filter :require_non_empty_project
def show
2013-10-01 10:00:28 -04:00
@blob = Gitlab::Git::Blob.find(@repository, @commit.id, @path)
not_found! unless @blob
2012-09-17 13:49:57 -04:00
end
end