1
0
mirror of https://github.com/misskey-dev/misskey synced 2024-12-26 20:48:30 +09:00
misskey/src/client/app/desktop/views/pages/admin/admin.suspend-user.vue

52 lines
897 B
Vue
Raw Normal View History

2018-08-14 01:05:58 +09:00
<template>
2018-08-18 05:05:39 +09:00
<div class="card">
2018-08-14 01:05:58 +09:00
<header>%i18n:@suspend-user%</header>
2018-08-15 04:44:39 +09:00
<input v-model="username" type="text" class="ui"/>
<button class="ui" @click="suspendUser" :disabled="suspending">%i18n:@suspend%</button>
2018-08-14 01:05:58 +09:00
</div>
</template>
<script lang="ts">
import Vue from "vue";
import parseAcct from "../../../../../../misc/acct/parse";
export default Vue.extend({
2018-08-14 01:48:11 +09:00
data() {
return {
username: null,
suspending: false
};
},
methods: {
async suspendUser() {
this.suspending = true;
2018-08-14 01:05:58 +09:00
2018-08-14 01:48:11 +09:00
const user = await (this as any).os.api(
"users/show",
parseAcct(this.username)
);
2018-08-14 01:05:58 +09:00
2018-08-14 01:48:11 +09:00
await (this as any).os.api("admin/suspend-user", {
userId: user.id
});
2018-08-14 01:05:58 +09:00
2018-08-14 01:48:11 +09:00
this.suspending = false;
2018-08-14 01:05:58 +09:00
2018-08-14 01:48:11 +09:00
(this as any).os.apis.dialog({ text: "%i18n:@suspended%" });
}
}
2018-08-14 01:05:58 +09:00
});
</script>
2018-08-18 03:59:48 +09:00
<style lang="stylus" scoped>
@import '~const.styl'
header
margin 10px 0
button
margin 16px 0
</style>