This commit is contained in:
syuilo
2018-02-09 13:11:30 +09:00
parent d1aba96a29
commit 92a1429de9
38 changed files with 308 additions and 328 deletions

View File

@ -115,7 +115,7 @@
this.api('auth/deny', {
token: this.session.token
}).then(() => {
this.trigger('denied');
this.$emit('denied');
});
};
@ -123,7 +123,7 @@
this.api('auth/accept', {
token: this.session.token
}).then(() => {
this.trigger('accepted');
this.$emit('accepted');
});
};
</script>