codecombat/app/schemas/subscriptions/auth.coffee

14 lines
275 B
CoffeeScript
Raw Normal View History

c = require 'schemas/schemas'
module.exports =
'auth:me-synced': c.object {required: ['me']},
me: {type: 'object'}
2014-11-21 17:18:02 -05:00
'auth:signed-up': c.object {}
2014-11-02 19:02:48 -05:00
'auth:logging-out': c.object {}
'auth:linkedin-api-loaded': c.object {}
'auth:log-in-with-github': c.object {}