Skip to content

Commit

Permalink
📝 (api) Better theme template api section title
Browse files Browse the repository at this point in the history
  • Loading branch information
baptisteArno committed Mar 28, 2023
1 parent 38ed575 commit 94aadc8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/builder/src/features/theme/api/deleteThemeTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down
2 changes: 1 addition & 1 deletion apps/builder/src/features/theme/api/listThemeTemplates.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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() }))
Expand Down
2 changes: 1 addition & 1 deletion apps/builder/src/features/theme/api/saveThemeTemplate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const saveThemeTemplate = authenticatedProcedure
path: '/themeTemplates/{themeTemplateId}',
protect: true,
summary: 'Save theme template',
tags: ['Workspace', 'Theme'],
tags: ['Theme template'],
},
})
.input(
Expand Down

0 comments on commit 94aadc8

Please sign in to comment.