mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2025-04-14 05:55:00 -04:00
added some app schemas + missing schema stub
This commit is contained in:
parent
4157447337
commit
2cde44319c
1 changed files with 19 additions and 2 deletions
|
@ -2,11 +2,21 @@ module.exports =
|
|||
"application:idle-changed":
|
||||
{} # TODO schema
|
||||
|
||||
"fbapi-loaded":
|
||||
{} # TODO schema
|
||||
|
||||
"logging-in-with-facebook":
|
||||
{} # TODO schema
|
||||
|
||||
"facebook-logged-in":
|
||||
{} # TODO schema
|
||||
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
|
||||
|
@ -15,4 +25,11 @@ module.exports =
|
|||
{} # TODO schema
|
||||
|
||||
"gplus-logged-in":
|
||||
{} # TODO schema
|
||||
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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue