2
0

📝 (api) Better theme template api section title

This commit is contained in:
Baptiste Arnaud
2023-03-28 15:16:05 +02:00
parent 38ed5758fe
commit 94aadc8361
3 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ export const deleteThemeTemplate = authenticatedProcedure
path: '/themeTemplates/{themeTemplateId}',
protect: true,
summary: 'Delete a theme template',
tags: ['Workspace', 'Theme'],
tags: ['Theme template'],
},
})
.input(

View File

@@ -13,7 +13,7 @@ export const listThemeTemplates = authenticatedProcedure
path: '/themeTemplates',
protect: true,
summary: 'List theme templates',
tags: ['Workspace', 'Theme'],
tags: ['Theme template'],
},
})
.input(z.object({ workspaceId: z.string() }))

View File

@@ -13,7 +13,7 @@ export const saveThemeTemplate = authenticatedProcedure
path: '/themeTemplates/{themeTemplateId}',
protect: true,
summary: 'Save theme template',
tags: ['Workspace', 'Theme'],
tags: ['Theme template'],
},
})
.input(