fix: rename wordlist to wordList

This commit is contained in:
Wyatt Johnson
2018-10-22 15:52:17 -06:00
parent fa72d5deda
commit 3b6f3c9ea8
8 changed files with 22 additions and 26 deletions
@@ -226,9 +226,9 @@ enum MODERATION_MODE {
}
"""
Wordlist describes all the available wordlists.
WordList describes all the available wordLists.
"""
type Wordlist {
type WordList {
"""
banned words will by default reject the comment if it is found.
"""
@@ -704,9 +704,9 @@ type Settings {
email: Email! @auth(roles: [ADMIN])
"""
wordlist will return a given list of words.
wordList will return a given list of words.
"""
wordlist: Wordlist! @auth(roles: [ADMIN, MODERATOR])
wordList: WordList! @auth(roles: [ADMIN, MODERATOR])
"""
auth contains all the settings related to authentication and authorization.
@@ -1304,7 +1304,7 @@ input SettingsEmailInput {
fromAddress: String
}
input SettingsWordlistInput {
input SettingsWordListInput {
"""
banned words will by default reject the comment if it is found.
"""
@@ -1641,9 +1641,9 @@ input SettingsInput {
organizationContactEmail: String
"""
wordlist will return a given list of words.
wordList will return a given list of words.
"""
wordlist: SettingsWordlistInput
wordList: SettingsWordListInput
"""
email is the set of credentials and settings associated with the organization.