feat: Implement new admin get app auth client API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-27 13:59:10 +01:00
parent 8f444eafa7
commit 4942cf8dae
5 changed files with 69 additions and 3 deletions

View File

@@ -1,19 +0,0 @@
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;