diff --git a/lib/plugin/blueprints/tymly-blueprint/models/permission.json b/lib/plugin/blueprints/tymly-blueprint/models/permission.json deleted file mode 100644 index 14dff3e9..00000000 --- a/lib/plugin/blueprints/tymly-blueprint/models/permission.json +++ /dev/null @@ -1,21 +0,0 @@ -{ - "plural": "permissions", - "primaryKey": ["roleId", "stateMachineName"], - "description": "Assign Flow permissions to roles", - "type": "object", - "properties": { - "stateMachineName": { - "type": "string" - }, - "roleId": { - "type": "string" - }, - "allows": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": ["stateMachineName", "roleId"] -} diff --git a/lib/plugin/blueprints/tymly-blueprint/models/role-membership.json b/lib/plugin/blueprints/tymly-blueprint/models/role-membership.json deleted file mode 100644 index 650762bb..00000000 --- a/lib/plugin/blueprints/tymly-blueprint/models/role-membership.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "plural": "roleMemberships", - "primaryKey": ["roleId", "memberType", "memberId"], - "description": "For building-up roles with users and sub-roles", - "type": "object", - "properties": { - "roleId": { - "type": "string" - }, - "memberType": { - "type": "string" - }, - "memberId": { - "type": "string" - } - }, - "required": ["roleId", "memberType", "memberId"] -} diff --git a/lib/plugin/blueprints/tymly-blueprint/models/role.json b/lib/plugin/blueprints/tymly-blueprint/models/role.json deleted file mode 100644 index 2fba8528..00000000 --- a/lib/plugin/blueprints/tymly-blueprint/models/role.json +++ /dev/null @@ -1,18 +0,0 @@ -{ - "plural": "roles", - "primaryKey": ["roleId"], - "description": "A list of roles to be used in Tymly ACL", - "type": "object", - "properties": { - "roleId": { - "type": "string" - }, - "label": { - "type": "string" - }, - "description": { - "type": "string" - } - }, - "required": ["roleId", "label"] -}