You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Refactoring FOS\RestBundle\Controller\Annotations to FOS\RestBundle\Controller\Attributes leads to invalid URLs being displayed in the api documentation.
advertising/tags -> advertisingtags (/ was omitted)
JSON OpenApi
use FOS\RestBundle\Controller\Annotations as RestAnnotation;
@RestAnnotation\Get("/advertising/tags")
=>
"/api/{version}/advertising/tags" in apidoc:dump
use FOS\RestBundle\Controller\Attributes as RestAttrib;
#[RestAttrib\Get("/advertising/tags")]
=>
"/api/{version}/advertisingtags" in apidoc:dump
Additional context
Setting
#[OA\Get( path: "/advertising/tags", …
does not change the outcome.
The text was updated successfully, but these errors were encountered:
This issue has been marked as stale because it has not had any activity for 60 days. Remove stale label or comment to prevent this from being closed in 21 days.
Version
v4.32.0
Description
Refactoring
FOS\RestBundle\Controller\Annotations
toFOS\RestBundle\Controller\Attributes
leads to invalid URLs being displayed in the api documentation.advertising/tags
->advertisingtags
(/ was omitted)JSON OpenApi
Additional context
Setting
does not change the outcome.
The text was updated successfully, but these errors were encountered: