codecombat/app/schemas/subscriptions/auth.coffee
Scott Erickson e6593dea8d Refactor FacebookHandler and GPlusHandler
* Move api loading to FacebookHandler
* Use success callbacks
* Use same, properly named events
* Use same functions and property names
* Refactor related social button, out of use rendering system
* Remove the now unnecessary form split from CreateAccountModal
2016-03-18 11:03:55 -07:00

13 lines
275 B
CoffeeScript

c = require 'schemas/schemas'
module.exports =
'auth:me-synced': c.object {required: ['me']},
me: {type: 'object'}
'auth:signed-up': c.object {}
'auth:logging-out': c.object {}
'auth:linkedin-api-loaded': c.object {}
'auth:log-in-with-github': c.object {}