Resolve #3376
This commit is contained in:
parent
7e803ff9a9
commit
0d272b1fb0
7 changed files with 27 additions and 8 deletions
|
@ -139,6 +139,13 @@ export const meta = {
|
|||
}
|
||||
},
|
||||
|
||||
summalyProxy: {
|
||||
validator: $.str.optional.nullable,
|
||||
desc: {
|
||||
'ja-JP': 'summalyプロキシURL'
|
||||
}
|
||||
},
|
||||
|
||||
enableTwitterIntegration: {
|
||||
validator: $.bool.optional,
|
||||
desc: {
|
||||
|
@ -300,6 +307,10 @@ export default define(meta, (ps) => new Promise(async (res, rej) => {
|
|||
set.langs = ps.langs;
|
||||
}
|
||||
|
||||
if (ps.summalyProxy !== undefined) {
|
||||
set.summalyProxy = ps.summalyProxy;
|
||||
}
|
||||
|
||||
if (ps.enableTwitterIntegration !== undefined) {
|
||||
set.enableTwitterIntegration = ps.enableTwitterIntegration;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue