diff options
| author | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2024-06-19 15:30:11 -0400 |
|---|---|---|
| committer | Jakob L. Kreuze <zerodaysfordays@sdf.org> | 2024-06-19 15:38:26 -0400 |
| commit | 39602bc6c10397e1d36e6c50af21009822eb1b31 (patch) | |
| tree | 473e15ed3f71114a0429ab604066e32e7c91fd8c /resources/settings.xml | |
| parent | 8578fc1dee49c59c8f1a9b2fc41bef46c1daaffb (diff) | |
Initial authentication support
Diffstat (limited to 'resources/settings.xml')
| -rw-r--r-- | resources/settings.xml | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/resources/settings.xml b/resources/settings.xml new file mode 100644 index 0000000..a4d2427 --- /dev/null +++ b/resources/settings.xml @@ -0,0 +1,40 @@ +<?xml version="1.0" ?> +<settings version="1"> + <section id="plugin.video.newgrounds"> + <category id="auth" label="30200" help=""> + <group id="1"> + <setting id="newgrounds.username" type="string" label="30201" help=""> + <level>0</level> + <default/> + <constraints> + <allowempty>true</allowempty> + </constraints> + <control format="string" type="edit"> + <heading>30201</heading> + </control> + </setting> + <setting id="newgrounds.password" type="string" label="30202" help=""> + <level>0</level> + <default/> + <constraints> + <allowempty>true</allowempty> + </constraints> + <control format="string" type="edit"> + <heading>302023</heading> + </control> + </setting> + <setting id="newgrounds.token" type="string" label="30203" help=""> + <level>0</level> + <default/> + <constraints> + <allowempty>true</allowempty> + </constraints> + <control format="string" type="edit"> + <heading>30203</heading> + <hidden>true</hidden> + </control> + </setting> + </group> + </category> + </section> +</settings> |