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

16 lines
369 B
Ruby
Raw Normal View History

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