dbot/modules/profile/profile.js

20 lines
531 B
JavaScript
Raw Normal View History

var _ = require('underscore')._;
var profile = function(dbot) {
this.onLoad = function(){
var api = this.api;
var schema = this.config.schema;
// Add API Hooks
dbot.api.command.addHook('~setaliasparent', this.api.renameProfile);
//TODO(@samstudio8) Profile Merging
//dbot.api.command.addHook('~mergeusers', this.api.mergeProfile);
2013-01-29 00:40:32 +01:00
dbot.api.event.addHook('new_user', this.api.createProfile);
};
};
exports.fetch = function(dbot) {
return new profile(dbot);
};