16 lines
		
	
	
		
			385 B
		
	
	
	
		
			Ruby
		
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			385 B
		
	
	
	
		
			Ruby
		
	
	
	
| # Controller for viewing a file's blame
 | |
| class Projects::BlobController < Projects::ApplicationController
 | |
|   include ExtractsPath
 | |
| 
 | |
|   # Authorize
 | |
|   before_filter :authorize_read_project!
 | |
|   before_filter :authorize_code_access!
 | |
|   before_filter :require_non_empty_project
 | |
| 
 | |
|   def show
 | |
|     @blob = Gitlab::Git::Blob.find(@repository, @commit.id, @path)
 | |
| 
 | |
|     not_found! unless @blob
 | |
|   end
 | |
| end
 |