diff options
| author | Fuwn <[email protected]> | 2023-09-17 20:13:59 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-09-17 20:13:59 -0700 |
| commit | 038e763326d8b4f0739f8bce860e577c3c1ff367 (patch) | |
| tree | c3e76e2ce1c9728dc35244e4baacf1a50febd249 /src/routes/settings | |
| parent | refactor(feeds): rename notifications (diff) | |
| download | due.moe-038e763326d8b4f0739f8bce860e577c3c1ff367.tar.xz due.moe-038e763326d8b4f0739f8bce860e577c3c1ff367.zip | |
feat(settings): add settings tab for feeds
Diffstat (limited to 'src/routes/settings')
| -rw-r--r-- | src/routes/settings/+page.svelte | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/routes/settings/+page.svelte b/src/routes/settings/+page.svelte index 0686b201..ea7d6d8b 100644 --- a/src/routes/settings/+page.svelte +++ b/src/routes/settings/+page.svelte @@ -31,6 +31,23 @@ Please log in to modify settings. {:else} <details open> + <summary>RSS Feeds</summary> + + <a + href={'#'} + on:click={() => + navigator.clipboard.writeText( + `https://due.moe/feeds/activity-notifications?token=${data.user.accessToken}` + )} + > + Click to copy AniList notifications RSS feed URL and token + </a> + <SettingHint lineBreak>Do not share this with anyone!</SettingHint> + </details> + + <p /> + + <details open> <summary>Display</summary> <SettingToggle setting={'forceLightTheme'} on={'Use preferred'} off={'Force light'}> |