feat: Implement get app auth API endpoint

This commit is contained in:
Faruk AYDIN
2024-02-28 16:16:08 +01:00
parent 356668a68d
commit 5dca0191d2
4 changed files with 63 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
const getAuthMock = (auth) => {
return {
data: {
fields: auth.fields,
authenticationSteps: auth.authenticationSteps,
reconnectionSteps: auth.reconnectionSteps,
},
meta: {
count: 1,
currentPage: null,
isArray: false,
totalPages: null,
type: 'Object',
},
};
};
export default getAuthMock;