mirror of
https://github.com/HabitRPG/habitica.git
synced 2025-12-18 15:17:25 +01:00
33 lines
455 B
JavaScript
33 lines
455 B
JavaScript
import {each} from 'lodash';
|
|
|
|
let subscriptionBlocks = {
|
|
basic_earned: {
|
|
months: 1,
|
|
price: 5
|
|
},
|
|
basic_3mo: {
|
|
months: 3,
|
|
price: 15
|
|
},
|
|
basic_6mo: {
|
|
months: 6,
|
|
price: 30
|
|
},
|
|
google_6mo: {
|
|
months: 6,
|
|
price: 24,
|
|
discount: true,
|
|
original: 30
|
|
},
|
|
basic_12mo: {
|
|
months: 12,
|
|
price: 48
|
|
}
|
|
};
|
|
|
|
each(subscriptionBlocks, function(block, key) {
|
|
block.key = key;
|
|
});
|
|
|
|
export default subscriptionBlocks;
|