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