(name, firebaseRef)
| 2 | |
| 3 | // TODO: use Ember.Object.extend() |
| 4 | const Room = function (name, firebaseRef) { |
| 5 | this._ref = firebaseRef; |
| 6 | this.name = name; |
| 7 | }; |
| 8 | |
| 9 | Room.prototype.join = function (user) { |
| 10 | const self = this; |
nothing calls this directly
no outgoing calls
no test coverage detected