a1fe375e44
It uses params[:id] instead of request.fullpath. It should fix #3132.
15 lines
356 B
Ruby
15 lines
356 B
Ruby
# Controller for viewing a file's blame
|
|
class BlameController < ProjectResourceController
|
|
include ExtractsPath
|
|
|
|
# Authorize
|
|
before_filter :authorize_read_project!
|
|
before_filter :authorize_code_access!
|
|
before_filter :require_non_empty_project
|
|
|
|
def show
|
|
@repo = @project.repo
|
|
@blame = Grit::Blob.blame(@repo, @commit.id, @path)
|
|
end
|
|
end
|