feat: Implement automatisch info API endpoint
This commit is contained in:
18
packages/backend/test/mocks/rest/api/v1/automatisch/info.js
Normal file
18
packages/backend/test/mocks/rest/api/v1/automatisch/info.js
Normal file
@@ -0,0 +1,18 @@
|
||||
const infoMock = () => {
|
||||
return {
|
||||
data: {
|
||||
isCloud: false,
|
||||
isMation: false,
|
||||
isEnterprise: true,
|
||||
},
|
||||
meta: {
|
||||
count: 1,
|
||||
currentPage: null,
|
||||
isArray: false,
|
||||
totalPages: null,
|
||||
type: 'Object',
|
||||
},
|
||||
};
|
||||
};
|
||||
|
||||
export default infoMock;
|
Reference in New Issue
Block a user