add permission level changed meta

This commit is contained in:
RaidMax
2022-02-23 12:47:00 -06:00
parent 18f3c59b9b
commit 39a1066c74
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;
}
}