add cooldown notification repeat

This commit is contained in:
lendry
2026-06-25 14:45:01 +03:00
parent 6c63343fc7
commit 9671fe458b
11 changed files with 173 additions and 25 deletions

View File

@@ -19,6 +19,8 @@ function grpcToHttp(code?: number): number {
return 404;
case GrpcStatus.ALREADY_EXISTS:
return 409;
case GrpcStatus.RESOURCE_EXHAUSTED:
return 429;
default:
return 500;
}