11 lines
247 B
JavaScript
11 lines
247 B
JavaScript
const appAuthClientSerializer = (appAuthClient) => {
|
|
return {
|
|
id: appAuthClient.id,
|
|
appConfigId: appAuthClient.appConfigId,
|
|
name: appAuthClient.name,
|
|
active: appAuthClient.active,
|
|
};
|
|
};
|
|
|
|
export default appAuthClientSerializer;
|