cleaning accepted types
This commit is contained in:
parent
0cfbc9193c
commit
22f4cdce73
1 changed files with 23 additions and 1 deletions
24
Helper.hs
24
Helper.hs
|
@ -157,7 +157,29 @@ reverseLookup _ [] = Nothing
|
||||||
reverseLookup _ _ = Nothing
|
reverseLookup _ _ = Nothing
|
||||||
|
|
||||||
acceptedTypes :: [T.Text]
|
acceptedTypes :: [T.Text]
|
||||||
acceptedTypes = ["image/jpeg", "image/jpg", "image/png", "image/x-ms-bmp", "image/x-bmp", "image/bmp", "image/tiff", "image/tiff-fx", "image/svg+xml", "image/gif"]
|
acceptedTypes =
|
||||||
|
-- PNG
|
||||||
|
[ "image/png"
|
||||||
|
-- BMP
|
||||||
|
, "image/x-ms-bmp"
|
||||||
|
, "image/x-bmp"
|
||||||
|
, "image/bmp"
|
||||||
|
-- JPG
|
||||||
|
, "image/jpeg"
|
||||||
|
, "image/jpg"
|
||||||
|
-- GIF
|
||||||
|
, "image/gif"
|
||||||
|
-- Radiance
|
||||||
|
, "image/vnd.radiance"
|
||||||
|
-- Targa
|
||||||
|
, "image/x-targa"
|
||||||
|
, "image/x-tga"
|
||||||
|
-- Tiff
|
||||||
|
, "image/tiff"
|
||||||
|
, "image/tiff-fx"
|
||||||
|
-- SVG
|
||||||
|
, "image/svg+xml"
|
||||||
|
]
|
||||||
|
|
||||||
iso8601 :: FormatTime t => t -> String
|
iso8601 :: FormatTime t => t -> String
|
||||||
iso8601 time =
|
iso8601 time =
|
||||||
|
|
Loading…
Reference in a new issue