bigbluebutton-Github/labs/bbb-html5-client/public/js/models/authentication.coffee
Leonardo Crauss Daronco 79d88135ab More options in the authentication object stored in the client
Authentication object is stored during the session, with data (currently with meetingID and username) sent by the server.
2012-12-10 23:51:01 -02:00

14 lines
225 B
CoffeeScript

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