Unverified Commit 046e4b98 authored by Nicolas Giard's avatar Nicolas Giard Committed by GitHub

fix(graphql): remove required flag on MailConfig schema

parent 97a74455
...@@ -49,17 +49,17 @@ type MailMutation { ...@@ -49,17 +49,17 @@ type MailMutation {
# ----------------------------------------------- # -----------------------------------------------
type MailConfig { type MailConfig {
senderName: String! senderName: String
senderEmail: String! senderEmail: String
host: String! host: String
port: Int! port: Int
name: String! name: String
secure: Boolean! secure: Boolean
verifySSL: Boolean! verifySSL: Boolean
user: String! user: String
pass: String! pass: String
useDKIM: Boolean! useDKIM: Boolean
dkimDomainName: String! dkimDomainName: String
dkimKeySelector: String! dkimKeySelector: String
dkimPrivateKey: String! dkimPrivateKey: String
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment