From d152605682bc87c91927b19e340de05e73de6a5c Mon Sep 17 00:00:00 2001 From: "DESKTOP-RTLN3BA\\$punk" Date: Mon, 9 Feb 2026 17:46:41 -0800 Subject: [PATCH] fix: update pages reward for incentive tasks - Reduced the pages reward for GitHub and Reddit tasks from 100 to 30. - Adjusted the pages reward for the Discord task from 100 to 40. --- surfsense_backend/app/db.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/surfsense_backend/app/db.py b/surfsense_backend/app/db.py index 3d9374342..d58145f23 100644 --- a/surfsense_backend/app/db.py +++ b/surfsense_backend/app/db.py @@ -273,19 +273,19 @@ INCENTIVE_TASKS_CONFIG = { IncentiveTaskType.GITHUB_STAR: { "title": "Star our GitHub repository", "description": "Show your support by starring SurfSense on GitHub", - "pages_reward": 100, + "pages_reward": 30, "action_url": "https://github.com/MODSetter/SurfSense", }, IncentiveTaskType.REDDIT_FOLLOW: { "title": "Join our Subreddit", "description": "Join the SurfSense community on Reddit", - "pages_reward": 100, + "pages_reward": 30, "action_url": "https://www.reddit.com/r/SurfSense/", }, IncentiveTaskType.DISCORD_JOIN: { "title": "Join our Discord", "description": "Join the SurfSense community on Discord", - "pages_reward": 100, + "pages_reward": 40, "action_url": "https://discord.gg/ejRNvftDp9", }, # Future tasks can be configured here: