52 lines
897 B
Vue
52 lines
897 B
Vue
<template>
|
|
<div class="card">
|
|
<header>%i18n:@suspend-user%</header>
|
|
<input v-model="username" type="text" class="ui"/>
|
|
<button class="ui" @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({
|
|
data() {
|
|
return {
|
|
username: null,
|
|
suspending: false
|
|
};
|
|
},
|
|
methods: {
|
|
async suspendUser() {
|
|
this.suspending = true;
|
|
|
|
const user = await (this as any).os.api(
|
|
"users/show",
|
|
parseAcct(this.username)
|
|
);
|
|
|
|
await (this as any).os.api("admin/suspend-user", {
|
|
userId: user.id
|
|
});
|
|
|
|
this.suspending = false;
|
|
|
|
(this as any).os.apis.dialog({ text: "%i18n:@suspended%" });
|
|
}
|
|
}
|
|
});
|
|
</script>
|
|
|
|
<style lang="stylus" scoped>
|
|
@import '~const.styl'
|
|
|
|
header
|
|
margin 10px 0
|
|
|
|
|
|
button
|
|
margin 16px 0
|
|
|
|
</style>
|