* old static image migrator implementation as cli command * auth id fix, renew works now * templates refactored to work with uploaded images
17 lines
235 B
PHP
17 lines
235 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
return [
|
|
'acl_config' => [
|
|
'unguarded_routes' => [
|
|
'api.auth.login',
|
|
'api.ping',
|
|
],
|
|
'unguarded_paths' => [
|
|
'/api/awardee-image',
|
|
'/api/judge-image',
|
|
],
|
|
],
|
|
];
|