refactor: Update credential wording with connection

This commit is contained in:
Ali BARIN
2021-10-17 16:08:05 +02:00
parent a1363f7fdd
commit 48ba4565e4
4 changed files with 21 additions and 21 deletions

View File

@@ -1,14 +1,14 @@
import { CREATE_CREDENTIAL } from './create-credentials';
import { CREATE_CONNECTION } from './create-connection';
import { CREATE_AUTH_LINK } from './create-auth-link';
import { UPDATE_CREDENTIAL } from './update-credential';
import { UPDATE_CONNECTION } from './update-connection';
type Mutations = {
[key: string]: any,
}
const mutations: Mutations = {
createCredential: CREATE_CREDENTIAL,
updateCredential: UPDATE_CREDENTIAL,
createConnection: CREATE_CONNECTION,
updateConnection: UPDATE_CONNECTION,
createAuthLink: CREATE_AUTH_LINK,
};