Merge branch 'main' into feat/email-auth

This commit is contained in:
Andrew Bastin 2021-06-11 01:10:19 -04:00 committed by GitHub
commit 2351f64e6f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -195,13 +195,14 @@ export default {
},
methods: {
async createCollectionGist() {
this.getJSONCollection()
await this.$axios
.$post(
"https://api.github.com/gists",
{
files: {
"hoppscotch-collections.json": {
content: this.getJSONCollection(),
content: this.collectionJson,
},
},
},