summaryrefslogtreecommitdiff
path: root/app/controllers/projects/blame_controller.rb
blob: 863a766a2552cb3ee18e11d4c03c712cfb8a19de (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# Controller for viewing a file's blame
class Projects::BlameController < Projects::ApplicationController
  include ExtractsPath

  before_action :require_non_empty_project
  before_action :assign_ref_vars
  before_action :authorize_download_code!

  def show
    @blob = @repository.blob_at(@commit.id, @path)
    
    return render_404 unless @blob

    @blame_groups = Gitlab::Blame.new(@blob, @commit).groups
  end
end