@@ -36,10 +36,10 @@ export class CustomJobsController {
3636 constructor ( private customJobsService : CustomJobsService ) { }
3737
3838 /**
39- * Read the custom job summaries.
39+ * Read the job summaries.
4040 *
4141 * @remarks
42- * Read the custom job summaries. The summaries are a lighter way to read custom jobs, where the code is not returned.
42+ * Read the job summaries. The summaries are a lighter way to read jobs, where the code is not returned.
4343 */
4444 @ApiDefaultResponseExtendModelId ( [ JobSummary ] )
4545 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
@@ -50,11 +50,11 @@ export class CustomJobsController {
5050 }
5151
5252 /**
53- * Create or duplicate a custom job.
53+ * Create or duplicate a job.
5454 *
5555 * @remarks
56- * Create or duplicate a custom job. If the `jobId` parameter is included, the identified
57- * custom job will be duplicated.
56+ * Create or duplicate a job. If the `jobId` parameter is included, the identified
57+ * job will be duplicated.
5858 */
5959 @ApiDefaultResponseExtendModelId ( CustomJobEntry )
6060 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
@@ -86,10 +86,10 @@ export class CustomJobsController {
8686 }
8787
8888 /**
89- * Read multiple custom jobs.
89+ * Read multiple jobs.
9090 *
9191 * @remarks
92- * Read multiple custom jobs and all their data.
92+ * Read multiple jobs and all their data.
9393 */
9494 @ApiDefaultResponseExtendModelId ( [ CustomJobEntry ] )
9595 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
@@ -100,10 +100,10 @@ export class CustomJobsController {
100100 }
101101
102102 /**
103- * Read a custom job.
103+ * Read a job.
104104 *
105105 * @remarks
106- * Read a custom job and all its data.
106+ * Read a job and all its data.
107107 */
108108 @ApiDefaultResponseExtendModelId ( CustomJobEntry )
109109 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
@@ -114,10 +114,10 @@ export class CustomJobsController {
114114 }
115115
116116 /**
117- * Modify a custom job.
117+ * Modify a job.
118118 *
119119 * @remarks
120- * Modify an existing custom job data.
120+ * Modify an existing job data.
121121 */
122122 @ApiDefaultResponseExtendModelId ( CustomJobEntry )
123123 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
@@ -139,10 +139,10 @@ export class CustomJobsController {
139139 }
140140
141141 /**
142- * Delete a custom job.
142+ * Delete a job.
143143 *
144144 * @remarks
145- * Delete a custom job by ID.
145+ * Delete a job by ID.
146146 */
147147 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
148148 @Scopes ( 'automation:custom-jobs:delete' )
@@ -156,7 +156,7 @@ export class CustomJobsController {
156156 *
157157 * @remarks
158158 * Used for debugging purposes, this call synchronizes the orchestrator cache with the
159- * current custom jobs in the database.
159+ * current jobs in the database.
160160 */
161161 @UseGuards ( AuthGuard ( [ JwtStrategy . name , ApiKeyStrategy . name ] ) , ScopesGuard )
162162 @Scopes ( 'automation:custom-jobs:cache-sync' )
0 commit comments