519ac9ce0e
Very simple by now, but with login working and switching to a (not yet implemented) session view.
12 lines
213 B
CoffeeScript
12 lines
213 B
CoffeeScript
define [
|
|
'underscore',
|
|
'backbone',
|
|
'cs!models/meeting'
|
|
], (_, Backbone, MeetingModel) ->
|
|
|
|
MeetingsCollection = Backbone.Collection.extend
|
|
model: MeetingModel
|
|
url: '/meetings'
|
|
|
|
MeetingsCollection
|