Merge branch 'develop' of https://github.com/frappe/lms into issues-164

This commit is contained in:
Jannat Patel
2025-12-23 10:40:03 +05:30
5 changed files with 278 additions and 490 deletions

View File

@@ -147,6 +147,29 @@ def verify_billing_access(doctype, name, billing_type):
return access, message
@frappe.whitelist(allow_guest=True)
def get_job_details(job):
return frappe.db.get_value(
"Job Opportunity",
job,
[
"job_title",
"location",
"country",
"type",
"work_mode",
"company_name",
"company_logo",
"company_website",
"name",
"creation",
"description",
"owner",
],
as_dict=1,
)
@frappe.whitelist(allow_guest=True)
def get_job_opportunities(filters=None, orFilters=None):
if not filters:

File diff suppressed because it is too large Load Diff