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
Describe the solution you'd like
The routing system should be enhanced to match routes based on specific S3 actions. The router must detect the incoming S3 action and invoke the corresponding S3 action route handler. Additionally, the current controllers should be refactored into smaller, more maintainable, and readable functions.
Implementation details include:
A middleware that matches the request based on query parameters.
A middleware that matches the request based on headers.
Furthermore, access control management (ACL, Policy, Object-Lock) should be refactored into middleware for better separation of concerns and maintainability.
If no matching route is found, the router should return a MethodNotAllowed error response.
The text was updated successfully, but these errors were encountered:
Describe the solution you'd like
The routing system should be enhanced to match routes based on specific S3 actions. The router must detect the incoming S3 action and invoke the corresponding S3 action route handler. Additionally, the current controllers should be refactored into smaller, more maintainable, and readable functions.
Implementation details include:
Furthermore, access control management (ACL, Policy, Object-Lock) should be refactored into middleware for better separation of concerns and maintainability.
If no matching route is found, the router should return a
MethodNotAllowed
error response.The text was updated successfully, but these errors were encountered: