feat: Implement new get app auth clients API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-26 23:58:35 +01:00
parent 98131d633e
commit bb68a75636
6 changed files with 20 additions and 28 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;