Ghost/ghost/admin/app/models/stripe-price.js
Rishabh 76319c2717 Updated price description to sentence case
closes https://github.com/TryGhost/Team/issues/680

We use sentence case for labels everywhere, updating price descriptions to use the same.
2021-05-10 18:48:39 +05:30

14 lines
612 B
JavaScript

import EmberObject from '@ember/object';
export default EmberObject.extend({
id: 'ID in Ghost',
stripe_price_id: 'ID of the Stripe Price',
stripe_product_id: 'ID of the Stripe Product the Stripe Price is associated with',
nickname: 'price nickname e.g. "Monthly"',
description: 'price description e.g. "Full access"',
amount: 'amount in smallest denomination e.g. cents, so value for 5 dollars would be 500',
currency: 'e.g. usd',
type: 'either one_time or recurring',
interval: 'will be `null` if type is one_time, otherwise how often price charges e.g "month", "year"'
});