Skip to content

Commit

Permalink
Merge pull request #157 from mishk0/update-deprecated-methods
Browse files Browse the repository at this point in the history
Update deprecated methods
  • Loading branch information
mishk0 authored Oct 2, 2022
2 parents 8bc998c + d303574 commit ee6e5f3
Show file tree
Hide file tree
Showing 2 changed files with 5,961 additions and 9 deletions.
14 changes: 5 additions & 9 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,10 @@ class Bot extends EventEmitter {
* Starts a Real Time Messaging API session
*/
login() {
this._api('rtm.start').then((data) => {
this._api('rtm.connect').then((data) => {
this.wsUrl = data.url;
this.self = data.self;
this.team = data.team;
this.channels = data.channels;
this.users = data.users;
this.ims = data.ims;
this.groups = data.groups;

this.emit('start');

Expand Down Expand Up @@ -80,7 +76,7 @@ class Bot extends EventEmitter {
if (this.channels) {
return Vow.fulfill({ channels: this.channels });
}
return this._api('channels.list');
return this._api('conversations.list');
}

/**
Expand All @@ -104,7 +100,7 @@ class Bot extends EventEmitter {
return Vow.fulfill({ groups: this.groups });
}

return this._api('groups.list');
return this._api('usergroups.list');
}

/**
Expand Down Expand Up @@ -142,7 +138,7 @@ class Bot extends EventEmitter {
*/
getGroup(name) {
return this.getGroups().then(function(data) {
var res = _.find(data.groups, { name: name });
var res = _.find(data.usergroups, { name: name });

console.assert(res, 'group not found');
return res;
Expand Down Expand Up @@ -257,7 +253,7 @@ class Bot extends EventEmitter {
* @returns {vow.Promise}
*/
openIm(userId) {
return this._api('im.open', {user: userId});
return this._api('conversations.open', {users: userId});
}

/**
Expand Down
Loading

0 comments on commit ee6e5f3

Please sign in to comment.