no message

This commit is contained in:
kittapath 2024-11-27 15:37:39 +07:00
parent b6f72e879c
commit 5ef484dce4

View file

@ -62,7 +62,7 @@ export class ApiKeyController extends Controller {
apiKey.createdAt = new Date(); apiKey.createdAt = new Date();
apiKey.lastUpdatedAt = new Date(); apiKey.lastUpdatedAt = new Date();
await this.apiKeyRepository.save(apiKey); await this.apiKeyRepository.save(apiKey);
return new HttpSuccess(); return new HttpSuccess(apiKey.keyApi);
} }
/** /**