mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-12-24 19:33:02 +03:00
Limited the API surface of the UpdateCheckService
refs https://github.com/TryGhost/Team/issues/728 - Passing only the necessary API endpoint function makes it easier to reason about what dependencies the UpdateCheckService has to deal with - The instance initialization had to be moved insided the module's exports to resolve "models" module initialization failure
This commit is contained in:
parent
1fd689ba45
commit
361166dde0
@ -18,6 +18,18 @@ const internal = {context: {internal: true}};
|
||||
* Blog owners can opt-out of update checks by setting `privacy: { useUpdateCheck: false }` in their config file.
|
||||
*/
|
||||
class UpdateCheckService {
|
||||
/**
|
||||
*
|
||||
* @param {Object} options
|
||||
* @param {Object} options.api - set of Ghost's API methods needed for update check to function
|
||||
* @param {Object} options.api.settings - Settings API methods
|
||||
* @param {Function} options.api.settings.read - method allowing to read Ghost's settings
|
||||
* @param {Function} options.api.settings.edit - method allowing to edit Ghost's settings
|
||||
* @param {Object} options.api.posts - Posts API methods
|
||||
* @param {Function} options.api.posts.browse - method allowing to read Ghost's posts
|
||||
* @param {Object} options.api.users - Users API methods
|
||||
* @param {Function} options.api.users.browse - method allowing to read Ghost's users
|
||||
*/
|
||||
constructor({api, config, i18n, logging, urlUtils, request, ghostVersion, ghostMailer}) {
|
||||
this.api = api;
|
||||
this.config = config;
|
||||
|
Loading…
Reference in New Issue
Block a user