chore: remove delete-connection mutation

This commit is contained in:
Ali BARIN
2024-08-28 13:28:06 +00:00
parent 990e69143d
commit 59278378e5
5 changed files with 0 additions and 30 deletions

View File

@@ -2,14 +2,12 @@ import { CREATE_CONNECTION } from './create-connection';
import { UPDATE_CONNECTION } from './update-connection';
import { VERIFY_CONNECTION } from './verify-connection';
import { RESET_CONNECTION } from './reset-connection';
import { DELETE_CONNECTION } from './delete-connection';
import { GENERATE_AUTH_URL } from './generate-auth-url';
const mutations = {
createConnection: CREATE_CONNECTION,
updateConnection: UPDATE_CONNECTION,
verifyConnection: VERIFY_CONNECTION,
resetConnection: RESET_CONNECTION,
deleteConnection: DELETE_CONNECTION,
generateAuthUrl: GENERATE_AUTH_URL,
};
export default mutations;