The license.txt file has been replaced with LICENSE for quite a while now. INAL but it didn't seem accurate to say "hey, checkout license.txt although there's no such file". Apart from this, there were inconsistencies in the headers altogether...this change brings consistency.
13 lines
No EOL
441 B
Python
13 lines
No EOL
441 B
Python
# Copyright (c) 2020, Frappe Technologies Pvt. Ltd. and Contributors
|
|
# License: MIT. See LICENSE
|
|
|
|
import frappe
|
|
from frappe.utils import cint
|
|
from frappe.search.website_search import WebsiteSearch
|
|
from frappe.search.full_text_search import FullTextSearch
|
|
|
|
@frappe.whitelist(allow_guest=True)
|
|
def web_search(query, scope=None, limit=20):
|
|
limit = cint(limit)
|
|
ws = WebsiteSearch(index_name="web_routes")
|
|
return ws.search(query, scope, limit) |