Upgraded mooncore packages. Added css variables for theming. Made all db calls use async/await

This commit is contained in:
2025-01-04 10:37:40 +01:00
parent bf89ef16f7
commit d477e803ab
8 changed files with 224 additions and 101 deletions

View File

@@ -47,7 +47,7 @@ public class ApiKeysController : Controller
Secret = secret
};
var finalApiKey = ApiKeyRepository.Add(apiKey);
var finalApiKey = await ApiKeyRepository.Add(apiKey);
return Mapper.Map<CreateApiKeyResponse>(finalApiKey);
}