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

Replace arunoda:streams by rocketchat:streamer #2842

Merged
merged 11 commits into from
Apr 13, 2016
2 changes: 1 addition & 1 deletion .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ konecty:multiple-instances-status
konecty:nrr
konecty:user-presence

arunoda:streams
rocketchat:streamer
chrismbeckett:toastr
dispatch:run-as-user
francocatena:status
Expand Down
2 changes: 1 addition & 1 deletion .meteor/versions
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ accounts-oauth@1.1.8
accounts-password@1.1.4
accounts-twitter@1.0.6
aldeed:simple-schema@1.5.3
arunoda:streams@0.1.17
autoupdate@1.2.4
babel-compiler@5.8.24_1
babel-runtime@0.1.4
Expand Down Expand Up @@ -180,6 +179,7 @@ rocketchat:slashcommands-leave@0.0.1
rocketchat:slashcommands-mute@0.0.1
rocketchat:spotify@0.0.1
rocketchat:statistics@0.0.1
rocketchat:streamer@0.3.2
rocketchat:theme@0.0.1
rocketchat:tooltip@0.0.1
rocketchat:tutum@0.0.1
Expand Down
22 changes: 0 additions & 22 deletions packages/meteor-streams/LICENSE

This file was deleted.

10 changes: 0 additions & 10 deletions packages/meteor-streams/README.md

This file was deleted.

55 changes: 0 additions & 55 deletions packages/meteor-streams/lib/client.js

This file was deleted.

43 changes: 0 additions & 43 deletions packages/meteor-streams/lib/ev.js

This file was deleted.

118 changes: 0 additions & 118 deletions packages/meteor-streams/lib/server.js

This file was deleted.

47 changes: 0 additions & 47 deletions packages/meteor-streams/lib/stream_permission.js

This file was deleted.

13 changes: 0 additions & 13 deletions packages/meteor-streams/package.js

This file was deleted.

2 changes: 1 addition & 1 deletion packages/rocketchat-assets/server/assets.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,7 @@ for key, value of assets
Meteor.startup ->
forEachAsset = (key, value) ->
RocketChat.settings.get "Assets_#{key}", (settingKey, settingValue) ->
if settingValue is undefined or not settingValue.url?
if not settingValue?.url?
value.cache = undefined
return

Expand Down
6 changes: 3 additions & 3 deletions packages/rocketchat-lib/client/Notifications.coffee
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
RocketChat.Notifications = new class
constructor: ->
@debug = false
@streamAll = new Meteor.Stream 'notify-all'
@streamRoom = new Meteor.Stream 'notify-room'
@streamUser = new Meteor.Stream 'notify-user'
@streamAll = new Meteor.Streamer 'notify-all'
@streamRoom = new Meteor.Streamer 'notify-room'
@streamUser = new Meteor.Streamer 'notify-user'

if @debug is true
@onAll -> console.log "RocketChat.Notifications: onAll", arguments
Expand Down
2 changes: 1 addition & 1 deletion packages/rocketchat-lib/package.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Package.onUse(function(api) {
api.use('matb33:collection-hooks');
api.use('service-configuration');
api.use('check');
api.use('arunoda:streams');
api.use('rocketchat:streamer');
api.use('rocketchat:version');
api.use('rocketchat:logger');

Expand Down
Loading