Skip to content
This repository has been archived by the owner on Feb 10, 2019. It is now read-only.

Handles a bunch more mutations #2

Merged
merged 2 commits into from Jun 16, 2018
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
284 changes: 76 additions & 208 deletions relay_data/schema.graphql

Large diffs are not rendered by default.

24 changes: 24 additions & 0 deletions relay_data/schema.json
Expand Up @@ -578,6 +578,30 @@
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "recordWebhooksUntilTime",
"description": "If this is set to be in the future, any webhook for this installation will get saved in the db",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
},
{
"name": "startedRecordingWebhooksTime",
"description": "The time when a user requested recording webhooks",
"args": [],
"type": {
"kind": "SCALAR",
"name": "String",
"ofType": null
},
"isDeprecated": false,
"deprecationReason": null
}
],
"inputFields": null,
Expand Down
5 changes: 3 additions & 2 deletions src/components/Installation.tsx
Expand Up @@ -7,7 +7,7 @@ import InstallationRules from "./installation/InstallationRules"
import Overview from "./installation/Overview"
import TaskRunner from "./installation/TaskRunner"
import Webhooks from "./installation/Webhooks"
import { Websocket } from "./installation/Websocket"
import Websocket from "./installation/Websocket"

export default class Installation extends React.Component<any> {
public render() {
Expand All @@ -25,6 +25,7 @@ export default class Installation extends React.Component<any> {
...InstallationRules_installation
...Webhooks_installation
...TaskRunner_installation
...Websocket_installation
}
}
`}
Expand All @@ -43,7 +44,7 @@ export default class Installation extends React.Component<any> {
<InstallationRules installation={props.installation} />
<Webhooks installation={props.installation} />
<TaskRunner installation={props.installation} />
<Websocket iID={installationID} />
<Websocket installation={props.installation} />
</Container>
)
}}
Expand Down
53 changes: 38 additions & 15 deletions src/components/__generated__/InstallationQuery.graphql.ts

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

48 changes: 0 additions & 48 deletions src/components/dashboard/InstallationsOverview.tsx

This file was deleted.

49 changes: 0 additions & 49 deletions src/components/dashboard/InstallationsToSetUp.tsx

This file was deleted.

This file was deleted.