Commit 59398cab authored by Maxime Roussin-Bélanger's avatar Maxime Roussin-Bélanger Committed by Sander van Harmelen

Add pipeline schedule API (#351)

parent 629c3f41
......@@ -52,7 +52,7 @@ to add new and/or missing endpoints. Currently the following services are suppor
- [x] Page Domains
- [x] Pipelines
- [x] Pipeline Triggers
- [ ] Pipeline Schedules
- [x] Pipeline Schedules
- [x] Projects (including setting Webhooks)
- [ ] Project Access Requests
- [x] Project Members
......
......@@ -287,6 +287,7 @@ type Client struct {
NotificationSettings *NotificationSettingsService
PagesDomains *PagesDomainsService
Pipelines *PipelinesService
PipelineSchedules *PipelineSchedulesService
PipelineTriggers *PipelineTriggersService
Projects *ProjectsService
ProjectMembers *ProjectMembersService
......@@ -373,6 +374,7 @@ func newClient(httpClient *http.Client, tokenType tokenType, token string) *Clie
c.NotificationSettings = &NotificationSettingsService{client: c}
c.PagesDomains = &PagesDomainsService{client: c}
c.Pipelines = &PipelinesService{client: c}
c.PipelineSchedules = &PipelineSchedulesService{client: c}
c.PipelineTriggers = &PipelineTriggersService{client: c}
c.Projects = &ProjectsService{client: c}
c.ProjectMembers = &ProjectMembersService{client: c}
......
This diff is collapsed.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment