mirror of
https://github.com/strapi/strapi.git
synced 2025-11-15 17:49:57 +00:00
test(ee): api for new list stage permissions
This commit is contained in:
parent
d61161d378
commit
437a42909d
@ -706,15 +706,16 @@ describeOnCondition(edition === 'EE')('Review workflows', () => {
|
|||||||
expect(res.body.data[0]).toMatchObject(secondStage);
|
expect(res.body.data[0]).toMatchObject(secondStage);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('It should return forbidden for a user who does not have permissions to read review workflows', async () => {
|
test('It should be forbidden when the user cannot read the content type', async () => {
|
||||||
const res = await restrictedRequest.get(endpoint(entry.id));
|
const res = await restrictedRequest.get(endpoint(entry.id));
|
||||||
|
|
||||||
expect(res.status).toBe(403);
|
expect(res.status).toEqual(403);
|
||||||
});
|
});
|
||||||
|
|
||||||
test('It should return an empty list when a user does not have the permission to transition the current stage', async () => {
|
test('It should return an empty list when a user does not have the permission to transition the current stage', async () => {
|
||||||
const permission = {
|
const permission = {
|
||||||
action: 'admin::review-workflows.read',
|
action: 'plugin::content-manager.explorer.read',
|
||||||
|
subject: productUID,
|
||||||
fields: null,
|
fields: null,
|
||||||
conditions: [],
|
conditions: [],
|
||||||
};
|
};
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user