Merge pull request #9 from christophlehmann/master

Fix typo in project sharing function
This commit is contained in:
jdalrymple 2017-11-12 16:10:50 -05:00 committed by GitHub
commit c865ab7a7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -79,7 +79,7 @@ class Projects extends BaseModel {
if (!groupId || !groupAccess) throw new Error('Missing required arguments');
options.group_id = groupId;
options.groupAccess = groupAccess;
options.group_access = groupAccess;
return this.post(`projects/${pId}/share`, options);
}