540c50f331
refs https://github.com/TryGhost/Team/issues/627 This is the reworked Member detail screen for Custom Products and adds new functionality, or includes existing including: - List Products for a Member, and the associated Subscriptions - Allow cancelling/continuing said Subscriptions - Adding a Product to a Member with a zero-amount Price
7 lines
148 B
JavaScript
7 lines
148 B
JavaScript
import EmberObject from '@ember/object';
|
|
|
|
export default EmberObject.extend({
|
|
name: 'Name of the product',
|
|
slug: 'Slug for the product'
|
|
});
|