Ghost/ghost/admin/app/components/gh-products-price-billingperiod.js
Peter Zimon 6986c4f424 Added mock product assignment modal
Created modal for adding products to members with mock data
2021-04-19 14:45:14 +02:00

13 lines
280 B
JavaScript

import Component from '@ember/component';
const PERIODS = [
{label: 'Monthly', period: 'monthly'},
{label: 'Yearly', period: 'yearly'}
];
export default Component.extend({
init() {
this._super(...arguments);
this.availablePeriods = PERIODS;
}
});