function getAllMergeRequests()

in public/scripts/api.js [16:24]


function getAllMergeRequests(auth, projectId) {
  return axios.get(auth.api + '/projects/' + projectId + '/merge_requests', {
    params: {
      private_token: auth.token,
      view: 'simple',
      per_page: 100
    }
  });
}