Merge pull request #1003 from Tria-plc/freight_feature/usermanagement

fix gl steps
This commit is contained in:
marshal
2026-07-29 10:33:03 +03:00
committed by GitHub
2 changed files with 4 additions and 4 deletions

View File

@@ -142,7 +142,7 @@ const ruleEngineCrudId = (
): string => {
const n =
RULE_ENGINE_RESOURCE_SLUGS.indexOf(slug) * 3 +
RULE_ENGINE_CRUD_ACTIONS.indexOf(action) +
RULE_ENGINE_CRUD_ACTIONS.indexOf(action) +
1; // 1..36
return `b2000002-0001-4000-8000-${n.toString(16).padStart(12, '0')}`;
};