appwrite/app/config/storage/inputs.php

12 lines
211 B
PHP
Raw Normal View History

2020-06-30 04:32:36 +00:00
<?php
2025-01-21 18:06:20 +00:00
return [
// Accepted inputs files
"jpg" => "image/jpeg",
"jpeg" => "image/jpeg",
"png" => "image/png",
"heic" => "image/heic",
"webp" => "image/webp",
"gif" => "image/gif",
2022-05-23 14:54:50 +00:00
];