mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-28 10:06:08 -05:00
35 lines
813 B
CoffeeScript
35 lines
813 B
CoffeeScript
module.exports =
|
|
"application:idle-changed":
|
|
{} # TODO schema
|
|
|
|
"fbapi-loaded":
|
|
{} # TODO schema
|
|
|
|
"logging-in-with-facebook":
|
|
{} # TODO schema
|
|
|
|
"facebook-logged-in":
|
|
title: "Facebook logged in"
|
|
$schema: "http://json-schema.org/draft-04/schema#"
|
|
description: "Published when you successfully logged in with facebook"
|
|
type: "object"
|
|
properties:
|
|
response:
|
|
type: "string"
|
|
required: ["response"]
|
|
|
|
"gapi-loaded":
|
|
{} # TODO schema
|
|
|
|
"logging-in-with-gplus":
|
|
{} # TODO schema
|
|
|
|
"gplus-logged-in":
|
|
title: "G+ logged in"
|
|
$schema: "http://json-schema.org/draft-04/schema#"
|
|
description: "Published when you successfully logged in with G+"
|
|
type: "object"
|
|
properties:
|
|
authResult:
|
|
type: "string"
|
|
required: ["authResult"]
|