...@@ -22,6 +22,8 @@ module API ...@@ -22,6 +22,8 @@ module API
end end
format :json format :json
content_type :txt, "text/plain"
helpers APIHelpers helpers APIHelpers
mount Groups mount Groups
... ...
......
...@@ -167,9 +167,7 @@ module API ...@@ -167,9 +167,7 @@ module API
blob = Gitlab::Git::Blob.find(repo, commit.id, params[:filepath]) blob = Gitlab::Git::Blob.find(repo, commit.id, params[:filepath])
not_found! "File" unless blob not_found! "File" unless blob
env['api.format'] = :txt content_type 'text/plain'
content_type blob.mime_type
present blob.data present blob.data
end end
... ...
......