diff options
author | Lewis Crichton <lewi@lewisakura.moe> | 2023-04-07 01:27:18 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-04-07 02:27:18 +0200 |
commit | 97f8d4d5154d566568fc475d6aaba5db07399b2b (patch) | |
tree | feafd22c26bdfc37a2d787e60f52bec94e777636 /src/plugins | |
parent | 2672dea8e361e8216b9459ac5dac97d36a47e412 (diff) | |
download | Vencord-97f8d4d5154d566568fc475d6aaba5db07399b2b.tar.gz Vencord-97f8d4d5154d566568fc475d6aaba5db07399b2b.tar.bz2 Vencord-97f8d4d5154d566568fc475d6aaba5db07399b2b.zip |
feat: Cloud settings sync (#505)
Co-authored-by: Ven <vendicated@riseup.net>
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/settings.tsx | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/plugins/settings.tsx b/src/plugins/settings.tsx index 8db0a4e..c8a6372 100644 --- a/src/plugins/settings.tsx +++ b/src/plugins/settings.tsx @@ -107,6 +107,13 @@ export default definePlugin({ }); cats.push({ + section: "VencordCloud", + label: "Cloud", + element: () => <SettingsComponent tab="VencordCloud" />, + onClick: makeOnClick("VencordCloud") + }); + + cats.push({ section: "VencordSettingsSync", label: "Backup & Restore", element: () => <SettingsComponent tab="VencordSettingsSync" />, |