mirror of
https://github.com/resf/distro-tools.git
synced 2024-11-15 17:51:27 +00:00
Just do a "case" if for type in Compat API
This commit is contained in:
parent
55b1efa8e9
commit
b66cef60e9
@ -187,6 +187,15 @@ async def fetch_advisories_compat(
|
|||||||
except:
|
except:
|
||||||
raise RenderErrorTemplateException("Invalid after date", 400) # noqa # pylint: disable=raise-missing-from
|
raise RenderErrorTemplateException("Invalid after date", 400) # noqa # pylint: disable=raise-missing-from
|
||||||
|
|
||||||
|
q_kind = kind
|
||||||
|
if q_kind:
|
||||||
|
if q_kind == "TYPE_BUGFIX":
|
||||||
|
q_kind = "Bug Fix"
|
||||||
|
elif q_kind == "TYPE_ENHANCEMENT":
|
||||||
|
q_kind = "Enhancement"
|
||||||
|
elif q_kind == "TYPE_SECURITY":
|
||||||
|
q_kind = "Security"
|
||||||
|
|
||||||
a = """
|
a = """
|
||||||
with vars (search, size, page_offset, product, before, after, cve, synopsis, severity, kind) as (
|
with vars (search, size, page_offset, product, before, after, cve, synopsis, severity, kind) as (
|
||||||
values ($1 :: text, $2 :: bigint, $3 :: bigint, $4 :: text, $5 :: timestamp, $6 :: timestamp, $7 :: text, $8 :: text, $9 :: text, $10 :: text)
|
values ($1 :: text, $2 :: bigint, $3 :: bigint, $4 :: text, $5 :: timestamp, $6 :: timestamp, $7 :: text, $8 :: text, $9 :: text, $10 :: text)
|
||||||
@ -242,7 +251,7 @@ async def fetch_advisories_compat(
|
|||||||
cve,
|
cve,
|
||||||
synopsis,
|
synopsis,
|
||||||
severity,
|
severity,
|
||||||
kind.upper() if kind else kind,
|
q_kind,
|
||||||
]
|
]
|
||||||
)
|
)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user