improved routing, cleaned mail

This commit is contained in:
Wyatt Johnson
2018-04-02 14:58:54 -06:00
parent 64d8d53987
commit c904d0f0c0
27 changed files with 323 additions and 169 deletions
+10
View File
@@ -1435,6 +1435,12 @@ type DelUserResponse implements Response {
errors: [UserError!]
}
type RequestDownloadLinkResponse implements Response {
# An array of errors relating to the mutation that occurred.
errors: [UserError!]
}
# All mutations for the application are defined on this object.
type RootMutation {
@@ -1535,6 +1541,10 @@ type RootMutation {
# delUser will delete the user with the specified id.
delUser(id: ID!): DelUserResponse
# requestDownloadLink will request a download link be sent to the primary
# users email address.
requestDownloadLink: RequestDownloadLinkResponse
}
type UsernameChangedPayload {