chore: Remove old admin app auth clients API endpoint

This commit is contained in:
Faruk AYDIN
2024-03-27 13:44:01 +01:00
parent 85b4cd4998
commit a873fd14bd
4 changed files with 0 additions and 80 deletions

View File

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