Broken request call

This commit is contained in:
Justin 2018-03-28 00:14:50 -04:00
parent f4a6a718d2
commit ce2c022fbd

View File

@ -19,7 +19,7 @@ class Projects extends BaseService {
return RequestHelper.put(this, `projects/${pId}`, options);
}
events(projectId, options) {
validateEventOptions(options.action, options.targetType);
@ -37,7 +37,7 @@ class Projects extends BaseService {
forks(projectId, options) {
const pId = encodeURIComponent(projectId);
return this.get(`projects/${pId}/forks`, options);
return RequestHelper.get(this, `projects/${pId}/forks`, options);
}
remove(projectId) {