убрал датасорсы и переработаны паблишеры
This commit is contained in:
parent
5335ac8c96
commit
34fc85333c
19 changed files with 319 additions and 127 deletions
34
docfiles/providers/managers/publishers/base/items/manager.js
Normal file
34
docfiles/providers/managers/publishers/base/items/manager.js
Normal file
|
@ -0,0 +1,34 @@
|
|||
/**
|
||||
*
|
||||
* @group manager
|
||||
* @class Items
|
||||
* @memberof Publishers.PublisherManager.Publisher
|
||||
*/
|
||||
var Items = function () {
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function get
|
||||
* @memberof Publishers.PublisherManager.Publisher.Items
|
||||
* @param _id {v2.integer}
|
||||
* @returns {tools.promise(PublisherItem)}
|
||||
*/
|
||||
this.get = function (_id) {
|
||||
|
||||
};
|
||||
|
||||
/**
|
||||
*
|
||||
* @public
|
||||
* @function is_exist
|
||||
* @memberof Publishers.PublisherManager.Publisher.Items
|
||||
* @param _id {v2.integer}
|
||||
* @returns {boolean}
|
||||
*/
|
||||
this.is_exist = function (_id) {
|
||||
|
||||
};
|
||||
};
|
||||
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue