Skip to content

Commit

Permalink
added support for platdev slauth
Browse files Browse the repository at this point in the history
  • Loading branch information
usrivastava92 committed Feb 16, 2024
1 parent 5ce6a7c commit b926f44
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,10 @@ const templateTags = [
displayName: "Environment Type (mandatory if Type is SLAUTH)",
help: "Select the environment for which you want to generate slauth token",
type: "enum",
options: Array.from(validEnvTypesSet, envType => ({ displayName: envType, value: envType })),
options: Array.from(validEnvTypesSet, (envType) => ({
displayName: envType,
value: envType,
})),
defaultValue: "dev",
},
{
Expand Down

0 comments on commit b926f44

Please sign in to comment.