bigbluebutton-Github/labs/bbb-html5-client/public/js/collections/meetings.coffee
Leonardo Crauss Daronco 519ac9ce0e First version of a single page html5 client app
Very simple by now, but with login working and switching to a (not yet implemented) session view.
2012-12-09 16:39:29 -02:00

12 lines
213 B
CoffeeScript

define [
'underscore',
'backbone',
'cs!models/meeting'
], (_, Backbone, MeetingModel) ->
MeetingsCollection = Backbone.Collection.extend
model: MeetingModel
url: '/meetings'
MeetingsCollection