This commit is contained in:
syuilo 2020-02-21 00:28:45 +09:00
parent 7de915d47b
commit c7c08b7511
10 changed files with 58 additions and 2 deletions

View file

@ -33,6 +33,10 @@ export const meta = {
validator: $.arr($.arr($.str))
},
excludeKeywords: {
validator: $.arr($.arr($.str))
},
users: {
validator: $.arr($.str)
},
@ -102,6 +106,7 @@ export default define(meta, async (ps, user) => {
userListId: userList ? userList.id : null,
userGroupJoiningId: userGroupJoining ? userGroupJoining.id : null,
keywords: ps.keywords,
excludeKeywords: ps.excludeKeywords,
users: ps.users,
caseSensitive: ps.caseSensitive,
withReplies: ps.withReplies,