1
0
Fork 0

chuni: Add 'handle_remove_token_api_request' for event mode

Not sure if `handle_delete_token_api_request` is used in other versions, so it's duplicated to be safe.
This commit is contained in:
Raymonf 2023-03-08 16:27:25 -05:00
parent 2033bc897f
commit b076a9a9df
Signed by: Raymonf
GPG Key ID: 438459BF619B037A
1 changed files with 3 additions and 0 deletions

View File

@ -60,6 +60,9 @@ class ChuniNew(ChuniBase):
"isAou": "false",
}
def handle_remove_token_api_request(self, data: Dict) -> Dict:
return { "returnCode": "1" }
def handle_delete_token_api_request(self, data: Dict) -> Dict:
return {"returnCode": "1"}