Ghost/ghost/admin/app/models/member-product.js
Fabien 'egg' O'Carroll 540c50f331 Wired up Member details screen to Custom Products
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
2021-04-26 17:28:39 +01:00

7 lines
148 B
JavaScript

import EmberObject from '@ember/object';
export default EmberObject.extend({
name: 'Name of the product',
slug: 'Slug for the product'
});