summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsyuilo <syuilotan@yahoo.co.jp>2018-04-22 07:34:33 +0900
committersyuilo <syuilotan@yahoo.co.jp>2018-04-22 07:34:33 +0900
commit40849a5aa8ac246d81884ffc6b2d1099ff880745 (patch)
tree1b7c576288ccad79bbf1d58e704f9b1958dc0d6f
parent:art: (diff)
downloadmisskey-40849a5aa8ac246d81884ffc6b2d1099ff880745.tar.gz
misskey-40849a5aa8ac246d81884ffc6b2d1099ff880745.tar.bz2
misskey-40849a5aa8ac246d81884ffc6b2d1099ff880745.zip
:v:
-rw-r--r--docs/manage.ja.md13
-rw-r--r--src/queue/index.ts1
2 files changed, 14 insertions, 0 deletions
diff --git a/docs/manage.ja.md b/docs/manage.ja.md
new file mode 100644
index 0000000000..d56ed4c19b
--- /dev/null
+++ b/docs/manage.ja.md
@@ -0,0 +1,13 @@
+# 運営ガイド
+
+## ジョブキューの状態を調べる
+Misskeyのディレクトリで:
+``` shell
+node_modules/kue/bin/kue-dashboard -p 3050
+```
+ポート3050にアクセスするとUIが表示されます
+
+## ユーザーを凍結する
+``` shell
+node cli/suspend (ユーザーID)
+```
diff --git a/src/queue/index.ts b/src/queue/index.ts
index fd973b077e..8338d8398c 100644
--- a/src/queue/index.ts
+++ b/src/queue/index.ts
@@ -21,6 +21,7 @@ export function createHttp(data) {
export function deliver(user, content, to) {
createHttp({
+ title: 'deliver',
type: 'deliver',
user,
content,