1
0
mirror of https://github.com/Infisical/infisical.git synced 2025-03-31 22:09:57 +00:00

Compare commits

...

6 Commits

Author SHA1 Message Date
d51c149b8b feat: test 2 2024-02-08 16:50:49 +00:00
d80a3f5cbd feat: removed another field 2024-02-08 16:44:35 +00:00
3f251e1211 test 2024-02-08 11:04:58 -05:00
6a5e17ec3c address lint rules 2024-02-08 10:52:15 -05:00
327c72a340 skip lint text 2024-02-07 16:17:54 -05:00
eee1b66f72 test breaking change 2024-02-07 16:10:31 -05:00

@ -39,8 +39,6 @@ export const registerSecretRouter = async (server: FastifyZodProvider) => {
method: "GET",
schema: {
querystring: z.object({
workspaceId: z.string().trim().optional(),
environment: z.string().trim().optional(),
secretPath: z.string().trim().default("/").transform(removeTrailingSlash),
include_imports: z
.enum(["true", "false"])
@ -606,12 +604,11 @@ export const registerSecretRouter = async (server: FastifyZodProvider) => {
secret: SecretsSchema.omit({ secretBlindIndex: true }).merge(
z.object({
_id: z.string(),
workspace: z.string(),
environment: z.string()
workspace: z.string()
})
)
}),
z.object({ approval: SecretApprovalRequestsSchema }).describe("When secret protection policy is enabled")
z.object({ approval: SecretApprovalRequestsSchema }).describe("Whennn secret protection policy is enabled")
])
}
},