We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dfe9d2a commit b6ccb80Copy full SHA for b6ccb80
src/services/Projects.js
@@ -46,6 +46,12 @@ class Projects extends BaseService {
46
return RequestHelper.get(this, `projects/${pId}/languages`);
47
}
48
49
+ mirrorPull(projectId) {
50
+ const pId = encodeURIComponent(projectId);
51
+
52
+ return RequestHelper.post(this, `projects/${pId}/mirror/pull`);
53
+ }
54
55
remove(projectId) {
56
const pId = encodeURIComponent(projectId);
57
0 commit comments