2018-08-13 18:05:58 +02:00
|
|
|
<template>
|
|
|
|
<div>
|
|
|
|
<header>%i18n:@suspend-user%</header>
|
|
|
|
<input v-model="username"/>
|
|
|
|
<button @click="suspendUser" :disabled="suspending">%i18n:@suspend%</button>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import Vue from "vue";
|
|
|
|
import parseAcct from "../../../../../../misc/acct/parse";
|
|
|
|
|
|
|
|
export default Vue.extend({
|
2018-08-13 18:48:11 +02:00
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
username: null,
|
|
|
|
suspending: false
|
|
|
|
};
|
|
|
|
},
|
|
|
|
methods: {
|
|
|
|
async suspendUser() {
|
|
|
|
this.suspending = true;
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2018-08-13 18:48:11 +02:00
|
|
|
const user = await (this as any).os.api(
|
|
|
|
"users/show",
|
|
|
|
parseAcct(this.username)
|
|
|
|
);
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2018-08-13 18:48:11 +02:00
|
|
|
await (this as any).os.api("admin/suspend-user", {
|
|
|
|
userId: user.id
|
|
|
|
});
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2018-08-13 18:48:11 +02:00
|
|
|
this.suspending = false;
|
2018-08-13 18:05:58 +02:00
|
|
|
|
2018-08-13 18:48:11 +02:00
|
|
|
(this as any).os.apis.dialog({ text: "%i18n:@suspended%" });
|
|
|
|
}
|
|
|
|
}
|
2018-08-13 18:05:58 +02:00
|
|
|
});
|
|
|
|
</script>
|