File tree Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Expand file tree Collapse file tree 1 file changed +8
-3
lines changed Original file line number Diff line number Diff line change @@ -108,11 +108,16 @@ class FeedInjectorService {
108
108
if (userRole == UserRole .guestUser) {
109
109
daysThreshold = daysBetweenActionsConfig.guestDaysBetweenAccountActions;
110
110
actionType = AccountActionType .linkAccount;
111
- } else if (userRole == UserRole .standardUser) {
112
- // Assuming standardUser is the target for upgrade prompts
111
+ } else if (userRole == UserRole .standardUser) {
113
112
daysThreshold =
114
113
daysBetweenActionsConfig.standardUserDaysBetweenAccountActions;
115
- actionType = AccountActionType .upgrade;
114
+
115
+ // todo(fulleni): once account upgrade feature is implemented,
116
+ // uncomment the action type line
117
+ // and remove teh null return line.
118
+
119
+ // actionType = AccountActionType.upgrade;
120
+ return null ;
116
121
} else {
117
122
// No account actions for premium users or other roles for now
118
123
return null ;
You can’t perform that action at this time.
0 commit comments