From a5c092ece0433a5a4d45a11a8385eb817a05c6da Mon Sep 17 00:00:00 2001 From: Angel Date: Thu, 30 Jan 2025 12:23:14 -0500 Subject: [PATCH] change key-sets to Key Sets to match Konnect in description text --- kong/db/schema/entities/key_sets.lua | 2 +- kong/db/schema/entities/keys.lua | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/kong/db/schema/entities/key_sets.lua b/kong/db/schema/entities/key_sets.lua index 9820ca138fd..095bda1790d 100644 --- a/kong/db/schema/entities/key_sets.lua +++ b/kong/db/schema/entities/key_sets.lua @@ -15,7 +15,7 @@ return { { name = { type = "string", - description = "The name to associate with the given key-set.", + description = "The name to associate with the given Key Set.", required = false, unique = true, }, diff --git a/kong/db/schema/entities/keys.lua b/kong/db/schema/entities/keys.lua index 755c7eedb1f..16be2ccc230 100644 --- a/kong/db/schema/entities/keys.lua +++ b/kong/db/schema/entities/keys.lua @@ -18,7 +18,7 @@ return { { set = { type = "foreign", - description = "The id of the key-set with which to associate the key.", + description = "The id of the Key Set with which to associate the key.", required = false, reference = "key_sets", on_delete = "cascade",