mirror of
https://github.com/Equicord/Equicord.git
synced 2025-02-07 12:24:02 -05:00
UserPFP Backup DB Addition (Not Default)
This commit is contained in:
parent
7913fb47be
commit
5e26c8a436
1 changed files with 12 additions and 3 deletions
|
@ -24,10 +24,19 @@ const settings = definePluginSettings({
|
||||||
],
|
],
|
||||||
},
|
},
|
||||||
urlForDB: {
|
urlForDB: {
|
||||||
type: OptionType.STRING,
|
type: OptionType.SELECT,
|
||||||
description: "Which Database url to use to load avatars, KNOW WHAT YOUR DOING",
|
description: "Which Database url to use to load avatars, KNOW WHAT YOUR DOING",
|
||||||
default: "https://userpfp.github.io/UserPFP/source/data.json",
|
options: [
|
||||||
placeholder: "Default value: https://userpfp.github.io/UserPFP/source/data.json"
|
{
|
||||||
|
label: "UserPFP Default DB",
|
||||||
|
value: "https://userpfp.github.io/UserPFP/source/data.json",
|
||||||
|
default: true
|
||||||
|
},
|
||||||
|
{
|
||||||
|
label: "UserPFP Backup DB",
|
||||||
|
value: "https://userpfp.thororen.com/UserPFP/source/data.json"
|
||||||
|
}
|
||||||
|
]
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue