mirror of
https://github.com/overleaf/overleaf.git
synced 2025-01-02 20:40:52 +00:00
9 lines
187 B
CoffeeScript
9 lines
187 B
CoffeeScript
define [
|
|
"libs/backbone"
|
|
"models/user"
|
|
], (Backbone, User) ->
|
|
ConnectedUsers = Backbone.Collection.extend
|
|
model: User
|
|
|
|
initialize: (models, options) ->
|
|
{@chat, @room} = options
|