summaryrefslogtreecommitdiff
path: root/src/client/app/desktop/views/pages/admin/admin.suspend-user.vue
blob: d47a4795ee3c6f23316ee0484e10fbeecf9007fe (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<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({
  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("%i18n:@suspended%");
    }
  }
});
</script>