Skip to content

Commit 23dd6be

Browse files
committed
feat: ✨ Add myself :)
1 parent f673934 commit 23dd6be

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/plans.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -101,10 +101,10 @@ export function isFreePaidSubscription(app: Probot, ctx: Context<any>): boolean
101101
const logins = ['PWrInSpace', 'KPLRCDBS', 'codemeistre', 'RaspberryPiFoundation', 'astro-pi',
102102
'LOG680-01-Equipe-09', 'New-AutoMotive', 'EpitechMscPro2020', 'snaphu-msu', 'SerenKodi', 'oyunprotocol',
103103
'web-illinois', 'PathologyDataScience', 'miranhas-github', 'DHBW-FN', 'lecoindesdevs', 'getcodelimit',
104-
'facio-ergo-sum'];
105-
const match = logins.find(o => o.toLowerCase() === login.toLowerCase());
106-
if (match !== undefined) {
107-
app.log.info('Found free ❤️ paid plan');
104+
'facio-ergo-sum', 'robvanderleek'];
105+
const matching_login = logins.find(o => o.toLowerCase() === login.toLowerCase());
106+
if (matching_login !== undefined) {
107+
app.log.info(`Found free ❤️ paid plan for login: ${matching_login}`);
108108
return true;
109109
} else {
110110
return false;

0 commit comments

Comments
 (0)