зеркало из https://github.com/mozilla/treeherder.git
9 строки
298 B
JavaScript
9 строки
298 B
JavaScript
import { createQueryParams, getApiUrl } from '../helpers/url';
|
|
|
|
export default class JobDetailModel {
|
|
static getJobDetails(params, signal) {
|
|
return fetch(`${getApiUrl('/jobdetail/')}${createQueryParams(params)}`, { signal })
|
|
.then(resp => resp.json().then(data => data.results));
|
|
}
|
|
}
|