New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

video-webinar-utils

Package Overview
Dependencies
Maintainers
1
Versions
614
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

video-webinar-utils - npm Package Compare versions

Comparing version 1.0.26 to 1.0.27

27

appState.js

@@ -256,6 +256,3 @@ var

return this._expire(key);
}.bind(this))
.then(function(){
return data
});
}.bind(this));
};

@@ -311,2 +308,24 @@

};
/**
* Сохранить имя записи
* @param {String} webinarId - идентификатор вебинара
* @param {String} fileId - идентификатор записи
* @returns {Q.Promise}
*/
AppState.prototype.saveRecord = function(webinarId, fileId) {
var key = 'webinar:' + webinarId + ':records';
return Q.nfcall(this.redisClient.sadd.bind(this.redisClient), key, fileId)
.then(function(){
return this._expire(key);
}.bind(this));
};
/**
* Получить записи вебинара
* @param {String} webinarId - идентификатор вебинара
* @returns {Q.Promise}
*/
AppState.prototype.getRecords = function(webinarId) {
var key = 'webinar:' + webinarId + ':records';
return Q.nfcall(this.redisClient.smembers.bind(this.redisClient), key);
};

@@ -313,0 +332,0 @@ module.exports = function init (cfg, logger) {

@@ -335,2 +335,10 @@ var

});
},
attachRecord: function (webinarId, fileId) {
return this._request('Документ.ДобавитьВД', {
'ИД': fileId,
'Документ': parseInt(webinarId, 10),
'фБезНазвания': false,
'фЭтоСкан': false
});
}

@@ -337,0 +345,0 @@ };

2

package.json
{
"name": "video-webinar-utils",
"version": "1.0.26",
"version": "1.0.27",
"dependencies": {

@@ -5,0 +5,0 @@ "escape-html": "1.0.x",

@@ -35,2 +35,3 @@ var

this.host = data.host;
this.sid = data.sid;
if (data.host && data.sid) {

@@ -37,0 +38,0 @@ this.dataProvider = new DataProvider({

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc