koishi-plugin-auto-friend-handler 0.0.1 → 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/lib/index.js +1 -1
- package/package.json +1 -1
package/lib/index.js
CHANGED
|
@@ -6,7 +6,7 @@ const koishi_1 = require("koishi");
|
|
|
6
6
|
exports.name = 'auto-friend-handler';
|
|
7
7
|
exports.inject = ['database'];
|
|
8
8
|
exports.Config = koishi_1.Schema.object({
|
|
9
|
-
replyMessage: koishi_1.Schema.string()
|
|
9
|
+
replyMessage: koishi_1.Schema.string().role('textarea')
|
|
10
10
|
.description('自动通过好友请求后发送的消息内容。')
|
|
11
11
|
.default('你好!我是机器人,很高兴认识你。'),
|
|
12
12
|
});
|