refactor: Move app auth client mock to correct folder

This commit is contained in:
Faruk AYDIN
2024-03-22 14:46:43 +01:00
parent d2cb434b7b
commit 280575df88
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,19 @@
const getAppAuthClientMock = (appAuthClient) => {
return {
data: {
name: appAuthClient.name,
id: appAuthClient.id,
appConfigId: appAuthClient.appConfigId,
active: appAuthClient.active,
},
meta: {
count: 1,
currentPage: null,
isArray: false,
totalPages: null,
type: 'AppAuthClient',
},
};
};
export default getAppAuthClientMock;