mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Passed appInfo to members-api stripe instance
no-issue
This commit is contained in:
parent
d69440bd4f
commit
97bf329ee2
1 changed files with 7 additions and 1 deletions
|
@ -3,6 +3,7 @@ const settingsCache = require('../settings/cache');
|
||||||
const urlUtils = require('../../lib/url-utils');
|
const urlUtils = require('../../lib/url-utils');
|
||||||
const MembersApi = require('@tryghost/members-api');
|
const MembersApi = require('@tryghost/members-api');
|
||||||
const common = require('../../lib/common');
|
const common = require('../../lib/common');
|
||||||
|
const ghostVersion = require('../../lib/ghost-version');
|
||||||
const mail = require('../mail');
|
const mail = require('../mail');
|
||||||
const models = require('../../models');
|
const models = require('../../models');
|
||||||
|
|
||||||
|
@ -79,7 +80,12 @@ function getStripePaymentConfig() {
|
||||||
checkoutSuccessUrl: siteUrl,
|
checkoutSuccessUrl: siteUrl,
|
||||||
checkoutCancelUrl: siteUrl,
|
checkoutCancelUrl: siteUrl,
|
||||||
product: stripePaymentProcessor.config.product,
|
product: stripePaymentProcessor.config.product,
|
||||||
plans: stripePaymentProcessor.config.plans
|
plans: stripePaymentProcessor.config.plans,
|
||||||
|
appInfo: {
|
||||||
|
name: 'Ghost',
|
||||||
|
version: ghostVersion.original,
|
||||||
|
url: 'https://ghost.org/'
|
||||||
|
}
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue