Welcome to mirror list, hosted at ThFree Co, Russian Federation.

mime_types.rb « initializers « config - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 5e3e4c966cbbf5013b763c34c05f6b85e63db6c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Be sure to restart your server when you modify this file.

# Add new mime types for use in respond_to blocks:
# Mime::Type.register "text/richtext", :rtf
# Mime::Type.register_alias "text/html", :iphone

Mime::Type.register_alias "text/plain", :diff
Mime::Type.register_alias "text/plain", :patch
Mime::Type.register_alias "text/html",  :markdown
Mime::Type.register_alias "text/html",  :md

Mime::Type.register "video/mp4",  :mp4, [], [:m4v, :mov]
Mime::Type.register "video/webm", :webm
Mime::Type.register "video/ogg",  :ogv

Mime::Type.unregister :json
Mime::Type.register 'application/json', :json, %w(application/vnd.git-lfs+json application/json)