Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
FLYBYME committed Oct 25, 2023
1 parent 0d94633 commit 47537f6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions services/domains.records.service.js
Original file line number Diff line number Diff line change
Expand Up @@ -160,23 +160,23 @@ module.exports = {
keyType: {
type: "enum",
values: ["KSK", "ZSK"],
optional: false
required: false
},
keySize: {
type: "enum",
values: [1024, 2048, 4096],
optional: false
required: false
},
keyTTL: { type: "number", optional: false },
keyTTL: { type: "number", required: false },
keyFlags: {
type: "number",
default: 257,
optional: false
required: false
},
keyProtocol: {
type: "number",
default: 3,
optional: false
required: false
},
keyAlgorithm: {
type: "enum",
Expand All @@ -195,7 +195,7 @@ module.exports = {
"ECDSAP384SHA384",

],
optional: false
required: false
},

nullified: {
Expand Down

0 comments on commit 47537f6

Please sign in to comment.