mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-01 22:02:11 +03:00
6986c4f424
Created modal for adding products to members with mock data
13 lines
280 B
JavaScript
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;
|
|
}
|
|
}); |