JSDoc cleanup
This commit is contained in:
parent
cea2d30928
commit
6af69e322a
|
@ -46,7 +46,7 @@ var PushNotificationSettingSchema = {
|
||||||
gcm: GcmSettingsSchema
|
gcm: GcmSettingsSchema
|
||||||
};
|
};
|
||||||
|
|
||||||
/**
|
/*!
|
||||||
* Data model for Application
|
* Data model for Application
|
||||||
*/
|
*/
|
||||||
var ApplicationSchema = {
|
var ApplicationSchema = {
|
||||||
|
@ -133,10 +133,10 @@ Application.beforeCreate = function (next) {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Register a new application
|
* Register a new application
|
||||||
* @param owner Owner's user id
|
* @param {String} owner Owner's user ID.
|
||||||
* @param name Name of the application
|
* @param {String} name Name of the application
|
||||||
* @param options Other options
|
* @param {Object} options Other options
|
||||||
* @param cb Callback function
|
* @param {Function} callback Callback function
|
||||||
*/
|
*/
|
||||||
Application.register = function (owner, name, options, cb) {
|
Application.register = function (owner, name, options, cb) {
|
||||||
assert(owner, 'owner is required');
|
assert(owner, 'owner is required');
|
||||||
|
|
Loading…
Reference in New Issue