リレーに不正なURLは追加できないように (#6351)

* リレーに不正なURLは追加できないように

* lint
This commit is contained in:
MeiMei 2020-05-15 20:51:16 +09:00 committed by GitHub
parent c5dd9439d5
commit 538ca2a7c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 25 additions and 0 deletions

View file

@ -64,6 +64,11 @@ export default Vue.extend({
inbox
}).then((relay: any) => {
this.refresh();
}).catch((e: any) => {
this.$root.dialog({
type: 'error',
text: e.message || e
});
});
},
@ -72,6 +77,11 @@ export default Vue.extend({
inbox
}).then(() => {
this.refresh();
}).catch((e: any) => {
this.$root.dialog({
type: 'error',
text: e.message || e
});
});
},