teableio/teable

View on GitHub
packages/core/src/auth/role/utils.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { RoleLevel } from './types';

export const canManageRole = (managerRole: string, targetRole: string) => {
  return RoleLevel.indexOf(managerRole) < RoleLevel.indexOf(targetRole);
};