Ghost/core/server/services/limits.js
Naz d60d348c88 Fixed error when hostLimits are undefined
refs a7dd7bb64b

- The error was introduced in the refed commit. Object.assign method only works when the first parameter is an object otherwise it fails.
2021-07-23 20:46:52 +04:00

42 lines
1.1 KiB
JavaScript

const errors = require('@tryghost/errors');
const config = require('../../shared/config');
const db = require('../data/db');
const LimitService = require('@tryghost/limit-service');
let limitService = new LimitService();
/**
* @param {Object} [limits] - An object containing limit configuration
**/
const initFn = (limits = {}) => {
let helpLink;
if (config.get('hostSettings:billing:enabled') && config.get('hostSettings:billing:enabled') === true && config.get('hostSettings:billing:url')) {
helpLink = config.get('hostSettings:billing:url');
} else {
helpLink = 'https://ghost.org/help/';
}
let subscription;
if (config.get('hostSettings:subscription')) {
subscription = {
startDate: config.get('hostSettings:subscription:start'),
interval: 'month'
};
}
const hostLimits = config.get('hostSettings:limits') || {};
limitService.loadLimits({
limits: Object.assign(hostLimits, limits),
subscription,
db,
helpLink,
errors
});
};
module.exports = limitService;
module.exports.init = initFn;