Skip to content

Commit

Permalink
Merge pull request #5 from lisb/feature/add-optional-domain-parameter
Browse files Browse the repository at this point in the history
Feature/add optional domain parameter
  • Loading branch information
krdlab authored Mar 8, 2022
2 parents 32dd3b1 + 7aa8336 commit c134ddf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,6 @@
},
"homepage": "https://github.com/lisb/hubot-direct",
"dependencies": {
"direct-js": "^1.101.1"
"direct-js": ">=1.114.0 <2"
}
}
4 changes: 2 additions & 2 deletions src/direct.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -50,8 +50,8 @@ class Direct extends Adapter
leave: (envelope, user) ->
@bot.leave envelope, user

users: ->
@bot.userObjects()
users: (domainId) ->
@bot.userObjects(domainId)

talks: ->
@bot.talkObjects()
Expand Down

0 comments on commit c134ddf

Please sign in to comment.