diff --git a/rundeckapp/grails-app/controllers/ExecutionController.groovy b/rundeckapp/grails-app/controllers/ExecutionController.groovy index e61e3255407..aa7c834af19 100644 --- a/rundeckapp/grails-app/controllers/ExecutionController.groovy +++ b/rundeckapp/grails-app/controllers/ExecutionController.groovy @@ -602,7 +602,7 @@ class ExecutionController { } } /** - * API: /api/execution/{id} , version 1.2 + * API: /api/execution/{id} , version 1 */ def apiExecution={ def Execution e = Execution.get(params.id) @@ -625,7 +625,7 @@ class ExecutionController { public static String ABORT_ABORTED="aborted" public static String ABORT_FAILED="failed" /** - * API: /api/execution/{id}/abort, version 1.2 + * API: /api/execution/{id}/abort, version 1 */ def apiExecutionAbort={ def Execution e = Execution.get(params.id) diff --git a/rundeckapp/grails-app/controllers/FrameworkController.groovy b/rundeckapp/grails-app/controllers/FrameworkController.groovy index f15dc0e7ce7..3d528ae4426 100644 --- a/rundeckapp/grails-app/controllers/FrameworkController.groovy +++ b/rundeckapp/grails-app/controllers/FrameworkController.groovy @@ -424,7 +424,7 @@ class FrameworkController { */ /** - * API: /api/projects, version 1.2 + * API: /api/projects, version 1 */ def apiProjects={ Framework framework = frameworkService.getFrameworkFromUserSession(session,request) @@ -477,7 +477,7 @@ class FrameworkController { } /** - * API: /api/project/NAME, version 1.2 + * API: /api/project/NAME, version 1 */ def apiProject={ Framework framework = frameworkService.getFrameworkFromUserSession(session,request) @@ -499,7 +499,7 @@ class FrameworkController { } /** - * API: /api/resource/$name, version 1.2 + * API: /api/resource/$name, version 1 */ def apiResource={ Framework framework = frameworkService.getFrameworkFromUserSession(session,request) @@ -528,7 +528,7 @@ class FrameworkController { return apiRenderNodeResult(nodes) } /** - * API: /api/resources, version 1.2 + * API: /api/resources, version 1 */ def apiResources={ExtNodeFilters query-> Framework framework = frameworkService.getFrameworkFromUserSession(session,request) diff --git a/rundeckapp/grails-app/controllers/MenuController.groovy b/rundeckapp/grails-app/controllers/MenuController.groovy index 99675271423..7dcc02e1771 100644 --- a/rundeckapp/grails-app/controllers/MenuController.groovy +++ b/rundeckapp/grails-app/controllers/MenuController.groovy @@ -374,7 +374,7 @@ class MenuController { */ /** - * API: /api/jobs, version 1.2 + * API: /api/jobs, version 1 */ def apiJobsList = {ScheduledExecutionQuery query -> if(params.project){ @@ -412,7 +412,7 @@ class MenuController { } /** - * API: /jobs/export, version 1.2 + * API: /jobs/export, version 1 */ def apiJobsExport = {ScheduledExecutionQuery query -> @@ -448,7 +448,7 @@ class MenuController { } /** - * API: /executions/running, version 1.2 + * API: /executions/running, version 1 */ def apiExecutionsRunning = { diff --git a/rundeckapp/grails-app/controllers/ReportsController.groovy b/rundeckapp/grails-app/controllers/ReportsController.groovy index a7537128bc2..fbb8985031a 100644 --- a/rundeckapp/grails-app/controllers/ReportsController.groovy +++ b/rundeckapp/grails-app/controllers/ReportsController.groovy @@ -450,7 +450,7 @@ class ReportsController { /** - * API, /api/history, version 1.2 + * API, /api/history, version 1 */ def apiHistory={ReportQuery query-> if(!params.project){ diff --git a/rundeckapp/grails-app/controllers/ScheduledExecutionController.groovy b/rundeckapp/grails-app/controllers/ScheduledExecutionController.groovy index b67b6b2e725..b6e0dc5b623 100644 --- a/rundeckapp/grails-app/controllers/ScheduledExecutionController.groovy +++ b/rundeckapp/grails-app/controllers/ScheduledExecutionController.groovy @@ -2385,7 +2385,7 @@ class ScheduledExecutionController { } } /** - * API: /jobs/import, version 1.2 + * API: /jobs/import, version 1 */ def apiJobsImport= { log.info("ScheduledExecutionController: upload " + params) @@ -2423,7 +2423,7 @@ class ScheduledExecutionController { } /** - * API: export job definition: /job/{id}, version 1.2 + * API: export job definition: /job/{id}, version 1 */ def apiJobExport={ log.info("ScheduledExecutionController: show : params: " + params) @@ -2448,7 +2448,7 @@ class ScheduledExecutionController { } } /** - * API: Run a job immediately: /job/{id}/run, version 1.2 + * API: Run a job immediately: /job/{id}/run, version 1 */ def apiJobRun= { def ScheduledExecution scheduledExecution = ScheduledExecution.get(params.long('id')) @@ -2480,7 +2480,7 @@ class ScheduledExecutionController { return new ExecutionController().renderApiExecutionListResultXML([result.execution]) } /** - * API: DELETE job definition: /job/{id}, version 1.2 + * API: DELETE job definition: /job/{id}, version 1 */ def apiJobDelete={ log.info("ScheduledExecutionController: show : params: " + params) @@ -2516,7 +2516,7 @@ class ScheduledExecutionController { /** - * API: run simple exec: /api/run/command, version 1.2 + * API: run simple exec: /api/run/command, version 1 */ def apiRunCommand={ @@ -2575,7 +2575,7 @@ class ScheduledExecutionController { /** - * API: run script: /api/run/script, version 1.2 + * API: run script: /api/run/script, version 1 */ def apiRunScript={