feat: Implement auth serializer

This commit is contained in:
Faruk AYDIN
2024-02-27 16:24:32 +01:00
parent 63c9442126
commit 356668a68d
3 changed files with 28 additions and 0 deletions

View File

@@ -6,6 +6,7 @@ import appAuthClientSerializer from './app-auth-client.js';
import flowSerializer from './flow.js';
import stepSerializer from './step.js';
import appSerializer from './app.js';
import authSerializer from './auth.js';
const serializers = {
User: userSerializer,
@@ -16,6 +17,7 @@ const serializers = {
Flow: flowSerializer,
Step: stepSerializer,
App: appSerializer,
Auth: authSerializer,
};
export default serializers;