Skip to content

Commit

Permalink
April 27 ESI Changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Blacksmoke16 committed Apr 28, 2018
1 parent de81bb9 commit b36f950
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 86 deletions.
75 changes: 0 additions & 75 deletions endpoints.gs
Original file line number Diff line number Diff line change
Expand Up @@ -313,81 +313,6 @@ ENDPOINTS = {
}
]
},
"characters_character_chat_channels": {
"description": "Return chat channels that a character is the owner or operator of",
"summary": "Get chat channels",
"request": "get",
"version": 1,
"headers": [
{
"name": "allowed",
"type": "array",
"sub_headers": [
"accessor_id",
"accessor_type"
]
},
{
"name": "blocked",
"type": "array",
"sub_headers": [
"accessor_id",
"accessor_type",
"end_at",
"reason"
]
},
{
"name": "channel_id",
"type": "integer"
},
{
"name": "comparison_key",
"type": "string"
},
{
"name": "has_password",
"type": "boolean"
},
{
"name": "motd",
"type": "string"
},
{
"name": "muted",
"type": "array",
"sub_headers": [
"accessor_id",
"accessor_type",
"end_at",
"reason"
]
},
{
"name": "name",
"type": "string"
},
{
"name": "operators",
"type": "array",
"sub_headers": [
"accessor_id",
"accessor_type"
]
},
{
"name": "owner_id",
"type": "integer"
}
],
"path": "/v1/characters/{character_id}/chat_channels/",
"authed": true,
"response_type": "array",
"item_type": "object",
"parameters": [

]
},
"characters_character_contacts": {
"description": "Return contacts of a character",
"summary": "Get contacts",
Expand Down
11 changes: 0 additions & 11 deletions function.gs
Original file line number Diff line number Diff line change
Expand Up @@ -114,17 +114,6 @@ function characters_character_calendar_event_attendees(event_id, name, opt_heade
return parseData_(arguments.callee.name,{event_id:event_id,name:name,opt_headers:opt_headers});
}

/**
* Return chat channels that a character is the owner or operator of
* @param {string} name Name of the character used for auth. If none is given, defaults to AUTHING_CHARACTER.
* @param {boolean} opt_headers Default: True, Boolean if column headings should be listed or not.
* @return Get chat channels.
* @customfunction
*/
function characters_character_chat_channels(name, opt_headers) {
return parseData_(arguments.callee.name,{name:name,opt_headers:opt_headers});
}

/**
* Return contacts of a character
* @param {string} name Name of the character used for auth. If none is given, defaults to AUTHING_CHARACTER.
Expand Down

0 comments on commit b36f950

Please sign in to comment.