1
0
Fork 0

sao: fix endpoint

This commit is contained in:
Hay1tsme 2023-11-09 11:32:04 -05:00
parent 4047a38370
commit 9537331d1c
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ class SaoServlet(BaseServlet):
def get_endpoint_matchers(self) -> Tuple[List[Tuple[str, str, Dict]], List[Tuple[str, str, Dict]]]:
return (
[],
[("render_POST", "/SaoServlet/{datecode}/proto/if/{endpoint}", {})]
[("render_POST", "/dev/proto/if/{category}/{endpoint}", {})]
)
@classmethod