bigbluebutton-Github/client/bbb-html5-client/public/js/models/authentication.coffee
2014-01-06 08:44:15 -08:00

14 lines
229 B
CoffeeScript

define [
'underscore',
'backbone'
], (_, Backbone) ->
AuthenticationModel = Backbone.Model.extend
url: '/auth'
defaults:
username: null
meetingID: null
loginAccepted: false
AuthenticationModel