2018-04-21 17:34:33 -05:00
|
|
|
# 運営ガイド
|
|
|
|
|
|
|
|
## ジョブキューの状態を調べる
|
2018-07-25 18:11:47 -05:00
|
|
|
coming soon
|
2018-04-21 17:34:33 -05:00
|
|
|
|
2018-07-24 17:29:55 -05:00
|
|
|
## 管理者ユーザーを設定する
|
|
|
|
``` shell
|
|
|
|
node cli/mark-admin (ユーザーID または ユーザー名)
|
|
|
|
```
|
|
|
|
|
|
|
|
## 'verified'ユーザーを設定する
|
|
|
|
``` shell
|
|
|
|
node cli/mark-verified (ユーザーID または ユーザー名)
|
|
|
|
```
|
|
|
|
|
2018-04-21 17:34:33 -05:00
|
|
|
## ユーザーを凍結する
|
|
|
|
``` shell
|
2018-07-15 00:27:25 -05:00
|
|
|
node cli/suspend (ユーザーID または ユーザー名)
|
|
|
|
```
|
|
|
|
例:
|
|
|
|
``` shell
|
|
|
|
# ユーザーID
|
|
|
|
node cli/suspend 57d01a501fdf2d07be417afe
|
|
|
|
|
|
|
|
# ユーザー名
|
|
|
|
node cli/suspend @syuilo
|
|
|
|
|
|
|
|
# ユーザー名 (リモート)
|
|
|
|
node cli/suspend @syuilo@misskey.xyz
|
2018-04-21 17:34:33 -05:00
|
|
|
```
|
2018-07-15 00:29:30 -05:00
|
|
|
|
|
|
|
## キャッシュされたリモートファイルをクリーンアップする
|
|
|
|
``` shell
|
|
|
|
node cli/clean-cached-remote-files
|
|
|
|
```
|
2018-07-15 00:35:22 -05:00
|
|
|
|
|
|
|
## 使われていないドライブのファイルをクリーンアップする
|
|
|
|
``` shell
|
|
|
|
node cli/clean-unused-drive-files
|
|
|
|
```
|
|
|
|
> ユーザーの大事なファイルを削除する可能性があるので、この操作を実行する前にユーザーに告知することをお勧めします。
|