fix again

This commit is contained in:
2024-11-27 16:44:06 +09:00
parent 01b3e8b8b5
commit 41aa11720d

View File

@@ -302,7 +302,8 @@ async def domain_edit(
@r.delete(
"/domain/{id}"
"/domain/{id}",
response_model_exclude_none=True,
)
async def domain_delete(
request: Request,
@@ -351,7 +352,8 @@ async def create_userdomain(
raise APIException('platform:domain',request.url._url,f"Error occurred while add user({userid}) domain:",e)
@r.delete(
"/domain/{domainid}/{userid}"
"/domain/{domainid}/{userid}",
response_model_exclude_none=True,
)
async def userdomain_delete(
request: Request,