フォローしているユーザーからのフォローを自動承認するオプション (#3780)

This commit is contained in:
MeiMei 2018-12-28 21:36:58 +09:00 committed by syuilo
parent 65a82f32be
commit 8823a6c1a1
5 changed files with 35 additions and 3 deletions

View file

@ -94,6 +94,13 @@ export const meta = {
}
},
autoAcceptFollowed: {
validator: $.bool.optional,
desc: {
'ja-JP': 'フォローしているユーザーからのフォローリクエストを自動承認するか'
}
},
isBot: {
validator: $.bool.optional,
desc: {
@ -140,6 +147,7 @@ export default define(meta, (ps, user, app) => new Promise(async (res, rej) => {
if (typeof ps.isLocked == 'boolean') updates.isLocked = ps.isLocked;
if (typeof ps.isBot == 'boolean') updates.isBot = ps.isBot;
if (typeof ps.carefulBot == 'boolean') updates.carefulBot = ps.carefulBot;
if (typeof ps.autoAcceptFollowed == 'boolean') updates.autoAcceptFollowed = ps.autoAcceptFollowed;
if (typeof ps.isCat == 'boolean') updates.isCat = ps.isCat;
if (typeof ps.autoWatch == 'boolean') updates['settings.autoWatch'] = ps.autoWatch;
if (typeof ps.alwaysMarkNsfw == 'boolean') updates['settings.alwaysMarkNsfw'] = ps.alwaysMarkNsfw;