招待コードが発行できない問題を修正
This commit is contained in:
parent
d248828523
commit
ed5386771a
1 changed files with 14 additions and 0 deletions
|
@ -345,6 +345,20 @@ export default Vue.extend({
|
||||||
},
|
},
|
||||||
|
|
||||||
methods: {
|
methods: {
|
||||||
|
invite() {
|
||||||
|
this.$root.api('admin/invite').then(x => {
|
||||||
|
this.$root.dialog({
|
||||||
|
type: 'info',
|
||||||
|
text: x.code
|
||||||
|
});
|
||||||
|
}).catch(e => {
|
||||||
|
this.$root.dialog({
|
||||||
|
type: 'error',
|
||||||
|
text: e
|
||||||
|
});
|
||||||
|
});
|
||||||
|
},
|
||||||
|
|
||||||
addPinUser() {
|
addPinUser() {
|
||||||
this.$root.new(MkUserSelect, {}).$once('selected', user => {
|
this.$root.new(MkUserSelect, {}).$once('selected', user => {
|
||||||
this.pinnedUsers = this.pinnedUsers.trim();
|
this.pinnedUsers = this.pinnedUsers.trim();
|
||||||
|
|
Loading…
Reference in a new issue