23 lines
555 B
JavaScript
23 lines
555 B
JavaScript
const getAppConfigMock = (appConfig) => {
|
|
return {
|
|
data: {
|
|
key: appConfig.key,
|
|
customConnectionAllowed: appConfig.customConnectionAllowed,
|
|
shared: appConfig.shared,
|
|
disabled: appConfig.disabled,
|
|
connectionAllowed: appConfig.connectionAllowed,
|
|
createdAt: appConfig.createdAt.getTime(),
|
|
updatedAt: appConfig.updatedAt.getTime(),
|
|
},
|
|
meta: {
|
|
count: 1,
|
|
currentPage: null,
|
|
isArray: false,
|
|
totalPages: null,
|
|
type: 'AppConfig',
|
|
},
|
|
};
|
|
};
|
|
|
|
export default getAppConfigMock;
|