Skip to content

Commit

Permalink
ALLOW_LIST
Browse files Browse the repository at this point in the history
  • Loading branch information
mfix22 committed Aug 23, 2020
1 parent 61aaad6 commit e4abfb6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/verify-payment-plan.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
const r = require('rexrex')
const { OPEN_SOURCE } = require('./constants')

const WHITE_LIST = new Set([
const ALLOW_LIST = new Set([
'dawnlabs',
'windsorio',
'runeai',
Expand Down Expand Up @@ -30,7 +30,7 @@ module.exports = async function verifyPaymentPlan(robot, context) {
}

const owner = context.repo().owner
if (WHITE_LIST.has(owner.toLowerCase())) {
if (ALLOW_LIST.has(owner.toLowerCase())) {
return true
}

Expand Down

0 comments on commit e4abfb6

Please sign in to comment.