MCPcopy Create free account
hub / github.com/ShareDropio/sharedrop / Room

Function Room

app/services/room.js:4–7  ·  view source on GitHub ↗
(name, firebaseRef)

Source from the content-addressed store, hash-verified

2
3// TODO: use Ember.Object.extend()
4const Room = function (name, firebaseRef) {
5 this._ref = firebaseRef;
6 this.name = name;
7};
8
9Room.prototype.join = function (user) {
10 const self = this;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected