mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-06-03 21:29:28 +00:00
12 lines
431 B
JavaScript
12 lines
431 B
JavaScript
export default {
|
|
search: function(searchsettings) {
|
|
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root
|
|
+ 'index.ci.php/components/SearchBar/search';
|
|
return axios.post(url, searchsettings);
|
|
},
|
|
searchdummy: function(searchsettings) {
|
|
const url = FHC_JS_DATA_STORAGE_OBJECT.app_root
|
|
+ 'public/js/apps/api/dummyapi.php/Search';
|
|
return axios.post(url, searchsettings);
|
|
}
|
|
}; |