mirror of
https://github.com/Equicord/Equicord.git
synced 2025-01-31 03:33:36 -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: {
|
||||
type: OptionType.STRING,
|
||||
type: OptionType.SELECT,
|
||||
description: "Which Database url to use to load avatars, KNOW WHAT YOUR DOING",
|
||||
default: "https://userpfp.github.io/UserPFP/source/data.json",
|
||||
placeholder: "Default value: https://userpfp.github.io/UserPFP/source/data.json"
|
||||
options: [
|
||||
{
|
||||
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