26 lines
678 B
JavaScript
Raw Normal View History

2019-07-19 09:58:38 +02:00
'use strict';
module.exports = {
/**
* Returns the list of available groups
*/
listGroups() {},
/**
* Returns a group configuration.
* It includes
* - schema
* - content-manager layouts (list,edit)
* - content-manager settings
* - content-manager metadata (placeholders, description, label...)
*/
findGroup() {},
/**
* Updates a group configuration
* You can only update the content-manager settings: (use the content-type-builder to update attributes)
* - content-manager layouts (list,edit)
* - content-manager settings
* - content-manager metadata (placeholders, description, label...)
*/
updatrGroup() {},
};