Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update linter settings #224

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
fix: typo
  • Loading branch information
UlisesGascon committed Jul 11, 2023
commit 36a1c5c1c6ddaff0f9b1d86c260352a829f470a7
2 changes: 1 addition & 1 deletion update/list-routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const jsonist = require('jsonist')
const url = 'https://api.mailgun.net/v3/routes'

function listRoutes (domain, callback) {
const options = { auth: `api:${cprocess.env.MAILGUN_API_KEY}` }
const options = { auth: `api:${process.env.MAILGUN_API_KEY}` }
jsonist.get(url, options, callback)
}

Expand Down