mirror of
https://github.com/VueFileManager/vuefilemanager.git
synced 2026-04-21 01:12:14 +00:00
s3 bandwidth usage fix
This commit is contained in:
15
src/Support/errors.php
Normal file
15
src/Support/errors.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
function accessDeniedError(): array {
|
||||
return [
|
||||
'type' => 'error',
|
||||
'message' => 'Access Denied',
|
||||
];
|
||||
}
|
||||
|
||||
function userActionNotAllowedError(): array {
|
||||
return [
|
||||
'type' => 'error',
|
||||
'message' => 'This user action is not allowed.',
|
||||
];
|
||||
}
|
||||
Reference in New Issue
Block a user