mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 08:08:15 -05:00
7 lines
254 B
CoffeeScript
7 lines
254 B
CoffeeScript
|
module.exports = class RealTimeModel extends Backbone.Firebase.Model
|
||
|
constructor: (savePath) ->
|
||
|
# TODO: Don't hard code this here
|
||
|
# TODO: Use prod path in prod
|
||
|
@firebase = 'https://codecombat.firebaseio.com/test/db/' + savePath
|
||
|
super()
|