fix(search): remove broken search route

can't do searches now unless logged-in

BREAKING CHANGE: any search request will be responded with a 410
This commit is contained in:
zyachel 2024-04-08 00:33:16 +05:30
parent a0ac36a174
commit f49062d44a
13 changed files with 36 additions and 489 deletions

View file

@ -8,11 +8,6 @@ const formatSlug = (slug, charToRemove) =>
////////////////////////////////////////////////////////
// EXPORTS
////////////////////////////////////////////////////////
export const searchKey = urlObj => {
const slug = formatSlug(urlObj.search, '?');
return `search:${slug}`;
};
export const answersKey = urlObj => {
const slug = formatSlug(urlObj.pathname, '/');
const lang = getLang(urlObj);