Add missing Module\Photo route for post-media id with no customsize
This commit is contained in:
parent
5112dd06f2
commit
c84d4104e8
2 changed files with 4 additions and 3 deletions
|
@ -372,10 +372,11 @@ return [
|
|||
|
||||
'/photo' => [
|
||||
'/{name}' => [Module\Photo::class, [R::GET]],
|
||||
'/{type}/{id:\d+}' => [Module\Photo::class, [R::GET]],
|
||||
// User Id Fallback, to remove after version 2021.12
|
||||
'/{type}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]],
|
||||
'/{type}/{nickname_ext}' => [Module\Photo::class, [R::GET]],
|
||||
'/{type}/{customsize}/{contact_id:\d+}' => [Module\Photo::class, [R::GET]],
|
||||
'/{type}/{customsize}/{id:\d+}' => [Module\Photo::class, [R::GET]],
|
||||
// User Id Fallback, to remove after version 2021.12
|
||||
'/{type}/{customsize}/{uid_ext:\d+\..*}' => [Module\Photo::class, [R::GET]],
|
||||
'/{type}/{customsize}/{nickname_ext}' => [Module\Photo::class, [R::GET]],
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue