Skip to content
Snippets Groups Projects
Commit 6cec9ed3 authored by Saito's avatar Saito
Browse files

linguist will take care of this

parent b664b784
No related branches found
No related tags found
1 merge request!1949Add a link to commit path on notes button (commit list)
Loading
Loading
@@ -147,7 +147,7 @@ module Gitlab
@hooks = paginate user_project.hooks
present @hooks, with: Entities::Hook
end
# Get a project hook
#
# Parameters:
Loading
Loading
@@ -159,7 +159,7 @@ module Gitlab
@hook = user_project.hooks.find(params[:hook_id])
present @hook, with: Entities::Hook
end
 
# Add hook to project
#
Loading
Loading
@@ -177,7 +177,7 @@ module Gitlab
error!({'message' => '404 Not found'}, 404)
end
end
# Update an existing project hook
#
# Parameters:
Loading
Loading
@@ -382,13 +382,7 @@ module Gitlab
tree = Tree.new commit.tree, user_project, ref, params[:filepath]
not_found! "File" unless tree.try(:tree)
 
if tree.text?
encoding = Gitlab::Encode.detect_encoding(tree.data)
content_type encoding ? "text/plain; charset=#{encoding}" : "text/plain"
else
content_type tree.mime_type
end
content_type tree.mime_type
present tree.data
end
 
Loading
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment