mirror of
https://code.castopod.org/adaures/castopod
synced 2025-06-06 18:31:05 +00:00
fix: update actorUsername regex to get url_to actor
Since CI4 v4.2.8, the actor route is not retrieved anymore, this prevents users from creating a podcast.
This commit is contained in:
parent
2d82411788
commit
1d6b177a55
@ -10,7 +10,10 @@ declare(strict_types=1);
|
|||||||
|
|
||||||
$routes = service('routes');
|
$routes = service('routes');
|
||||||
|
|
||||||
$routes->addPlaceholder('actorUsername', '[a-zA-Z0-9\_]{1,32}');
|
// FIXME: HOTFIX to be edited, add character to actorUsername regex to have it show up on routes list
|
||||||
|
// This bug is from CI4, since v4.2.8 with the following change
|
||||||
|
// https://github.com/codeigniter4/CodeIgniter4/pull/6644/files#diff-b28efb4cd802e8a3ead515befe9f46254b6cc9d17ab1beeb8a42a16cff69d283R1257
|
||||||
|
$routes->addPlaceholder('actorUsername', '[a-zA-Z0-9\_]{1,33}');
|
||||||
$routes->addPlaceholder(
|
$routes->addPlaceholder(
|
||||||
'uuid',
|
'uuid',
|
||||||
'[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}',
|
'[0-9A-Fa-f]{8}-[0-9A-Fa-f]{4}-4[0-9A-Fa-f]{3}-[89ABab][0-9A-Fa-f]{3}-[0-9A-Fa-f]{12}',
|
||||||
|
Loading…
x
Reference in New Issue
Block a user