Skip to content
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

[NEW] Support for dynamic slack and rocket.chat channels #10205

Merged
merged 20 commits into from
Jun 19, 2018
Merged
Show file tree
Hide file tree
Changes from 12 commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/rocketchat-slackbridge/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ The following can be configured in your Rocket.Chat Administration SlackBridge p

#### Group Chat Messages
* Send and receive basic messages
* Delete messages
* Delete messages (Can't delete slack message from rocket)
* Edit messages (Slack doesn't allow editing of BOT messages, so can't edit a Rocket msg in Slack)
* React to messages (as BOT in Slack)

Expand Down
7 changes: 6 additions & 1 deletion packages/rocketchat-slackbridge/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,14 @@ Package.onUse(function(api) {
api.use('rocketchat:logger');

api.addFiles('client/slackbridge_import.client.js', 'client');

api.addFiles('server/logger.js', 'server');
api.addFiles('server/settings.js', 'server');
api.addFiles('server/slackbridge.js', 'server');
api.addFiles('server/slackbridge_import.server.js', 'server');
api.addFiles('server/RocketAdapter.js', 'server');
api.addFiles('server/SlackAdapter.js', 'server');
});

Npm.depends({
'slack-client': '2.0.6'
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we adding this here?

});
Loading