1
0
mirror of https://github.com/RaidMax/IW4M-Admin.git synced 2025-06-10 15:20:48 -05:00

add permission level changed meta

This commit is contained in:
RaidMax
2022-02-23 12:47:00 -06:00
parent a4c1060ccc
commit 385464f1dc
9 changed files with 170 additions and 32 deletions

View File

@ -69,6 +69,10 @@ namespace WebfrontCore.ViewComponents
case MetaType.ConnectionHistory:
meta = await metaService.GetRuntimeMeta<ConnectionHistoryResponse>(request, metaType.Value);
break;
case MetaType.PermissionLevel:
meta = await metaService.GetRuntimeMeta<PermissionLevelChangedResponse>(request,
metaType.Value);
break;
}
}