Commit a37b347f authored by Sander van Harmelen's avatar Sander van Harmelen

Make the code consistent (within this package)

parent bc3f93f0
...@@ -6,7 +6,6 @@ ...@@ -6,7 +6,6 @@
# Folders # Folders
_obj _obj
_test _test
.idea
# Architecture specific extensions/prefixes # Architecture specific extensions/prefixes
*.[568vq] *.[568vq]
...@@ -24,5 +23,6 @@ _testmain.go ...@@ -24,5 +23,6 @@ _testmain.go
*.test *.test
*.prof *.prof
# IDE specific stuff # IDE specific files and folders
*.iml .idea
\ No newline at end of file *.iml
...@@ -24,7 +24,6 @@ to add new and/or missing endpoints. Currently the following services are suppor ...@@ -24,7 +24,6 @@ to add new and/or missing endpoints. Currently the following services are suppor
- [ ] Epic Issues - [ ] Epic Issues
- [ ] Epics - [ ] Epics
- [ ] Geo Nodes - [ ] Geo Nodes
- [x] Project import/export
- [x] Award Emojis - [x] Award Emojis
- [x] Branches - [x] Branches
- [x] Broadcast Messages - [x] Broadcast Messages
...@@ -35,14 +34,14 @@ to add new and/or missing endpoints. Currently the following services are suppor ...@@ -35,14 +34,14 @@ to add new and/or missing endpoints. Currently the following services are suppor
- [x] Deployments - [x] Deployments
- [x] Environments - [x] Environments
- [x] Events - [x] Events
- [x] Feature flags - [x] Feature Flags
- [x] GitLab CI Config templates - [x] GitLab CI Config Templates
- [x] Gitignores templates - [x] Gitignores Templates
- [x] Group Access Requests - [x] Group Access Requests
- [x] Group Issue Boards - [x] Group Issue Boards
- [x] Group Members - [x] Group Members
- [x] Group Milestones - [x] Group Milestones
- [x] Group-level Variables - [x] Group-Level Variables
- [x] Groups - [x] Groups
- [x] Issue Boards - [x] Issue Boards
- [x] Issues - [x] Issues
...@@ -54,19 +53,20 @@ to add new and/or missing endpoints. Currently the following services are suppor ...@@ -54,19 +53,20 @@ to add new and/or missing endpoints. Currently the following services are suppor
- [x] Merge Requests - [x] Merge Requests
- [x] Namespaces - [x] Namespaces
- [x] Notes (comments) - [x] Notes (comments)
- [x] Notification settings - [x] Notification Settings
- [x] Open source license templates - [x] Open Source License Templates
- [x] Pages Domains - [x] Pages Domains
- [x] Pipeline Schedules - [x] Pipeline Schedules
- [x] Pipeline Triggers - [x] Pipeline Triggers
- [x] Pipelines - [x] Pipelines
- [x] Project Access Requests - [x] Project Access Requests
- [x] Project Badges
- [x] Project Clusters - [x] Project Clusters
- [x] Project Import/export
- [x] Project Members - [x] Project Members
- [x] Project Milestones - [x] Project Milestones
- [x] Project Snippets - [x] Project Snippets
- [x] Project badges - [x] Project-Level Variables
- [x] Project-level Variables
- [x] Projects (including setting Webhooks) - [x] Projects (including setting Webhooks)
- [x] Protected Branches - [x] Protected Branches
- [x] Protected Tags - [x] Protected Tags
...@@ -76,12 +76,12 @@ to add new and/or missing endpoints. Currently the following services are suppor ...@@ -76,12 +76,12 @@ to add new and/or missing endpoints. Currently the following services are suppor
- [x] Search - [x] Search
- [x] Services - [x] Services
- [x] Settings - [x] Settings
- [x] Sidekiq metrics - [x] Sidekiq Metrics
- [x] System Hooks - [x] System Hooks
- [x] Tags - [x] Tags
- [x] Todos - [x] Todos
- [x] Users - [x] Users
- [x] Validate CI configuration - [x] Validate CI Configuration
- [x] Version - [x] Version
- [x] Wikis - [x] Wikis
......
This diff is collapsed.
...@@ -225,11 +225,11 @@ func (s *RepositoriesService) Compare(pid interface{}, opt *CompareOptions, opti ...@@ -225,11 +225,11 @@ func (s *RepositoriesService) Compare(pid interface{}, opt *CompareOptions, opti
// //
// GitLab API docs: https://docs.gitlab.com/ce/api/repositories.html#contributors // GitLab API docs: https://docs.gitlab.com/ce/api/repositories.html#contributors
type Contributor struct { type Contributor struct {
Name string `json:"name,omitempty"` Name string `json:"name"`
Email string `json:"email,omitempty"` Email string `json:"email"`
Commits int `json:"commits,omitempty"` Commits int `json:"commits"`
Additions int `json:"additions,omitempty"` Additions int `json:"additions"`
Deletions int `json:"deletions,omitempty"` Deletions int `json:"deletions"`
} }
func (c Contributor) String() string { func (c Contributor) String() string {
......
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