feat: write PATCH /v1/admin/apps/:appKey/auth-clients/:appAuthClientId
This commit is contained in:
@@ -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;
|
Reference in New Issue
Block a user