Skip to content

Commit

Permalink
Add Shared Storage trusted origins route to RoutesBuilder (#49126)
Browse files Browse the repository at this point in the history
We add a route for /.well-known/shared-storage/trusted-origins to RoutesBuilder in order to test custom data origins for shared storage.

See the explainer update: WICG/shared-storage#198.

(This is a second attempt, after closing the failed #49112.)
  • Loading branch information
pythagoraskitty authored Nov 12, 2024
1 parent 00ee046 commit b6027ab
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tools/serve/serve.py
Original file line number Diff line number Diff line change
Expand Up @@ -604,6 +604,7 @@ def add_mount_point(self, url_base, path):
("GET", "/.well-known/interest-group/permissions/", handlers.PythonScriptHandler),
("*", "/.well-known/interest-group/real-time-report", handlers.PythonScriptHandler),
("*", "/.well-known/private-aggregation/*", handlers.PythonScriptHandler),
("GET", "/.well-known/shared-storage/trusted-origins", handlers.PythonScriptHandler),
("*", "/.well-known/web-identity", handlers.PythonScriptHandler),
("*", "*.py", handlers.PythonScriptHandler),
("GET", "*", handlers.FileHandler)
Expand Down

0 comments on commit b6027ab

Please sign in to comment.