Skip to content

Commit 58be928

Browse files
committed
feat: Add self-opt-in hint for blocked users (#9237)
1 parent 26878fc commit 58be928

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/devindex/services/OptIn.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -313,7 +313,7 @@ class OptIn extends Base {
313313
commentBody += `**Already in Queue (Skipped):**\n${alreadyTracked.map(u => `- @${u}`).join('\n')}\n\n`;
314314
}
315315
if (blocked.length > 0) {
316-
commentBody += `**Opted Out (Skipped):**\n${blocked.map(u => `- @${u}`).join('\n')}\n\n`;
316+
commentBody += `**Opted Out (Skipped):**\n${blocked.map(u => `- @${u}`).join('\n')}\n*(Note: Users who have explicitly opted out can only opt back in themselves.)*\n\n`;
317317
}
318318

319319
if (issue.invalidLogins && issue.invalidLogins.length > 0) {

0 commit comments

Comments
 (0)