Skip to content

Commit

Permalink
chore(docs): reword consumers username and custom_id field description
Browse files Browse the repository at this point in the history
  • Loading branch information
pmalek committed Apr 22, 2024
1 parent 983cc13 commit fd27e2e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions kong/db/schema/entities/consumers.lua
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,15 @@ return {
{
username = {
description =
"The unique username of the Consumer. You must send either this field or custom_id with the request.",
"The unique username of the Consumer. You must send at least one of username or custom_id with the request.",
type = "string",
unique = true
},
},
{
custom_id =
{
description = "Stores the existing unique ID of the consumer.",
description = "Stores the existing unique ID of the consumer. You must send at least one of username or custom_id with the request",
type = "string",
unique = true
},
Expand Down

0 comments on commit fd27e2e

Please sign in to comment.