-
Notifications
You must be signed in to change notification settings - Fork 193
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SlackChannelJoinedListener is not listening? #261
Comments
qwisatz
changed the title
SlackChannelJoinedListener is not listener?
SlackChannelJoinedListener is not listening?
Mar 24, 2019
I would like to work on this issue. Is this still available? |
This was referenced Nov 17, 2021
It's been a long time since I touched this and cannot remember but I think
that everything should work as long as you have the accounts/tokens for
each service which is slack and all the google apis.
…On Wed, Nov 17, 2021 at 7:19 AM rajanpatel4578 ***@***.***> wrote:
I would like to work on this issue. Is this still available?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#261 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AI5GKCX467TOZIVA7IPRM4LUMNJRHANCNFSM4HAW4FEA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
I believe the SlackChannelJoinedListener listens and notifies only when the bot itself joins and doesn't notify when another new member, say Member B, joins. (Slack channel_joined event) |
I see. I say an easy change can be made if that's the case. Sorry about the
late reply, I haven't looked in that code for ages and maybe there's been
API changes and everything.
…On Sat, Dec 4, 2021 at 8:37 AM rajanpatel4578 ***@***.***> wrote:
I believe the SlackChannelJoinedListener listens and notifies only when
the bot itself joins and doesn't notify when another new member, say Member
B, joins. (Slack channel_joined
<https://api.slack.com/events/channel_joined> event)
vs
MemberJoinedChannelListener (Slack member_joined_channel
<https://api.slack.com/events/member_joined_channel> event) notifies the
bot of all members joining- itself, a new user, or another bot.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#261 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AI5GKCW6QXIMBDLFASIMLGTUPHHMJANCNFSM4HAW4FEA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I'm trying to create a listener for joining users that will notify me, the listeners not working:
SlackChannelJoinedListener slackChannelJoinedListener = new SlackChannelJoinedListener() {
};
session.addChannelJoinedListener(slackChannelJoinedListener);
The text was updated successfully, but these errors were encountered: