1
0
mirror of https://github.com/misskey-dev/misskey.git synced 2026-05-04 03:46:19 +02:00
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>