refactor: Move admin get app auth client mock to correct folder

This commit is contained in:
Faruk AYDIN
2024-03-22 14:44:35 +01:00
parent 2ecb802a2e
commit d2cb434b7b
2 changed files with 1 additions and 1 deletions

View File

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