dbot/modules/poll/poll.js

26 lines
846 B
JavaScript
Raw Normal View History

var poll = function(dbot) {
this.internalAPI = {
'updatePollNicks': function(server, oldNick) {
var newNick = dbot.api.users.resolveUser(server, oldNick);
_.each(dbot.db.polls, function(poll) {
if(poll.owner === oldNick) {
poll.owner = newNick;
}
if(_.has(poll.votees, oldNick)) {
poll.votees[newNick] = poll.votees[oldNick];
delete poll.votees[oldNick];
}
}, this);
}
};
this.onLoad = function() {
2013-05-26 00:09:07 +02:00
// dbot.api.command.addHook('~setaliasparent', this.internalAPI.updatePollNicks);
// dbot.api.command.addHook('~mergeusers', this.internalAPI.updatePollNicks);
}.bind(this);
};
exports.fetch = function(dbot) {
2013-01-15 17:21:43 +01:00
return new poll(dbot);
}