feat: Introduce generic auth steps

This commit is contained in:
Ali BARIN
2021-10-14 18:34:30 +02:00
parent 1fbc58e7e1
commit 9c529b6c6d
12 changed files with 399 additions and 313 deletions

View File

@@ -0,0 +1,13 @@
import { CREATE_CREDENTIAL } from './create-credentials';
import { CREATE_AUTH_LINK } from './create-auth-link';
type Mutations = {
[key: string]: any,
}
const mutations: Mutations = {
createCredential: CREATE_CREDENTIAL,
createAuthLink: CREATE_AUTH_LINK,
};
export default mutations;