Add Tables as an API type that supports dataplane RBAC. (#2056)

This commit is contained in:
jawelton74
2025-02-18 09:29:53 -08:00
committed by GitHub
parent 0170c9e1cc
commit d7923db108
4 changed files with 10 additions and 3 deletions

View File

@@ -89,3 +89,7 @@ export const getItemName = (): string => {
return "Items";
}
};
export const isDataplaneRbacSupported = (apiType: string): boolean => {
return apiType === "SQL" || apiType === "Tables";
};