Add warning for deprecated admin module

This commit is contained in:
pinpox
2025-05-14 11:47:38 +02:00
parent 3520ca5ef3
commit 742fbd111f
2 changed files with 13 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
{ config, ... }:
{
config.assertions = [
{
assertion = config.clan.inventory.services.admin != { };
message = ''
The admin module has been migrated from `clan.services` to `clan.instances`
See https://docs.clan.lol/TODO for updated usage.
'';
}
];
}