refactor: Use kebab-case for app auth client serializer filename

This commit is contained in:
Faruk AYDIN
2024-02-24 01:10:59 +01:00
parent 5a209f81d1
commit 3d8235c670
2 changed files with 1 additions and 1 deletions

View File

@@ -0,0 +1,10 @@
const appAuthClientSerializer = (appAuthClient) => {
return {
id: appAuthClient.id,
appConfigId: appAuthClient.appConfigId,
name: appAuthClient.name,
active: appAuthClient.active,
};
};
export default appAuthClientSerializer;