Fix(medusa/loaders/plugins) jsdoc (#904)

This commit is contained in:
Adrien de Peretti
2021-12-09 12:06:43 +01:00
committed by GitHub
parent e64f036ad3
commit a0b6946b5f

View File

@@ -301,10 +301,8 @@ async function registerServices(pluginDetails, container) {
}
/**
* Registers a plugin's models at the right location in our container. Models
* must inherit from BaseModel. Models are registered directly in the container.
* Names are camelCase formatted and namespaced by the folder i.e:
* models/example-person -> examplePersonModel
* Registers a plugin's subscribers at the right location in our container.
* Subscribers are registered directly in the container.
* @param {object} pluginDetails - the plugin details including plugin options,
* version, id, resolved path, etc. See resolvePlugin
* @param {object} container - the container where the services will be
@@ -326,10 +324,8 @@ function registerSubscribers(pluginDetails, container) {
}
/**
* Registers a plugin's models at the right location in our container. Models
* must inherit from BaseModel. Models are registered directly in the container.
* Names are camelCase formatted and namespaced by the folder i.e:
* models/example-person -> examplePersonModel
* Registers a plugin's repositories at the right location in our container.
* repositories are registered directly in the container.
* @param {object} pluginDetails - the plugin details including plugin options,
* version, id, resolved path, etc. See resolvePlugin
* @param {object} container - the container where the services will be