Socket
Socket
Sign inDemoInstall

simple-gitlab-api

Package Overview
Dependencies
52
Maintainers
1
Versions
10
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "simple-gitlab-api",
"version": "1.0.3",
"version": "1.0.4",
"description": "A simple GitLab API library for Node.js using simple request-promise calls",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -85,2 +85,11 @@ var requestPromise = require('request-promise');

commit_message: commit_message
}),
searchUser: (username) =>
self.get('/users?username=' + username),
addGroupMember: (path, user_id) =>
self.post('/groups/' + encodeURIComponent(path) + '/members', {
user_id: user_id,
access_level: 40
})

@@ -87,0 +96,0 @@

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc