mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-03-11 02:12:21 -05:00
Fixed ESLint warnings
This commit is contained in:
parent
aed7ef0cae
commit
6d48846f15
2 changed files with 2 additions and 0 deletions
|
@ -66,6 +66,7 @@ module.exports = createTransactionalMigration(
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// eslint-disable-next-line no-restricted-syntax
|
||||||
offerRedemptions.forEach((redemption) => {
|
offerRedemptions.forEach((redemption) => {
|
||||||
const memberEvents = mrrCreatedEventsByMemberId[redemption.member_id];
|
const memberEvents = mrrCreatedEventsByMemberId[redemption.member_id];
|
||||||
|
|
||||||
|
|
|
@ -5,6 +5,7 @@ const {createTransactionalMigration} = require('../../utils');
|
||||||
|
|
||||||
module.exports = createTransactionalMigration(
|
module.exports = createTransactionalMigration(
|
||||||
async function up(knex) {
|
async function up(knex) {
|
||||||
|
// eslint-disable-next-line no-restricted-syntax
|
||||||
const canceledSubscriptions = await knex('members_stripe_customers_subscriptions')
|
const canceledSubscriptions = await knex('members_stripe_customers_subscriptions')
|
||||||
.select(
|
.select(
|
||||||
'members_stripe_customers_subscriptions.id',
|
'members_stripe_customers_subscriptions.id',
|
||||||
|
|
Loading…
Add table
Reference in a new issue