remove searchdummy function and dummyapi

This commit is contained in:
Harald Bamberger
2024-11-25 13:57:25 +01:00
parent 2ed24ca60f
commit f90f5154a0
3 changed files with 2 additions and 24 deletions
+1 -5
View File
@@ -19,9 +19,5 @@ export default {
search(searchsettings) {
const url = '/api/frontend/v1/searchbar/search';
return this.$fhcApi.post(url, searchsettings);
},
searchdummy(searchsettings) {
const url = 'public/js/apps/api/dummyapi.php/Search';
return this.$fhcApi.post(url, searchsettings);
}
};
};
-13
View File
@@ -1,13 +0,0 @@
<?php
function getUser(){
echo "test";
}
class Dummy extends Auth_Controller
{
}
?>
+1 -6
View File
@@ -4,10 +4,5 @@ export default {
+ FHC_JS_DATA_STORAGE_OBJECT.ci_router
+ '/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);
}
};
};