Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
G
go-gitlab
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
go-gitlab
Commits
59398cab
Commit
59398cab
authored
Feb 28, 2018
by
Maxime Roussin-Bélanger
Committed by
Sander van Harmelen
Feb 28, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add pipeline schedule API (#351)
parent
629c3f41
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
1 deletion
+3
-1
README.md
README.md
+1
-1
gitlab.go
gitlab.go
+2
-0
pipeline_schedules.go
pipeline_schedules.go
+0
-0
No files found.
README.md
View file @
59398cab
...
...
@@ -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
...
...
gitlab.go
View file @
59398cab
...
...
@@ -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
}
...
...
pipeline_schedules.go
0 → 100644
View file @
59398cab
This diff is collapsed.
Click to expand it.
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment