feat: write PATCH /v1/admin/apps/:appKey/auth-clients/:appAuthClientId

This commit is contained in:
Ali BARIN
2024-08-27 16:02:16 +00:00
parent 09b255f99e
commit b2bda8479e
4 changed files with 131 additions and 0 deletions

View File

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