studiocms
Version:
Astro Native CMS for AstroDB. Built from the ground up by the Astro community.
18 lines (17 loc) • 346 B
JavaScript
const getLabelForPermissionLevel = (permissionLevel) => {
switch (permissionLevel) {
case "admin":
return "Administrator";
case "editor":
return "Editor";
case "owner":
return "Owner";
case "visitor":
return "Visitor";
default:
return "Unknown";
}
};
export {
getLabelForPermissionLevel
};