diff options
Diffstat (limited to 'services/actions/interface.go')
-rw-r--r-- | services/actions/interface.go | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/services/actions/interface.go b/services/actions/interface.go index d4fa782fec..a054c38e4f 100644 --- a/services/actions/interface.go +++ b/services/actions/interface.go @@ -25,4 +25,16 @@ type API interface { UpdateVariable(*context.APIContext) // GetRegistrationToken get registration token GetRegistrationToken(*context.APIContext) + // CreateRegistrationToken get registration token + CreateRegistrationToken(*context.APIContext) + // ListRunners list runners + ListRunners(*context.APIContext) + // GetRunner get a runner + GetRunner(*context.APIContext) + // DeleteRunner delete runner + DeleteRunner(*context.APIContext) + // ListWorkflowJobs list jobs + ListWorkflowJobs(*context.APIContext) + // ListWorkflowRuns list runs + ListWorkflowRuns(*context.APIContext) } |