fe-drone-ci/src/api/remoteSearch.js

10 lines
163 B
JavaScript
Raw Normal View History

2017-04-23 11:50:32 +00:00
import { fetch } from 'utils/fetch';
export function userSearch(name) {
return fetch({
url: '/search/user',
method: 'get',
params: { name }
});
}