mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-24 16:17:57 -05:00
e6593dea8d
* 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
13 lines
275 B
CoffeeScript
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 {}
|