From a3571f4d282068479196f52f5b4d78383422ccd5 Mon Sep 17 00:00:00 2001 From: Liam Appelbe Date: Sat, 21 Sep 2024 17:47:43 +1000 Subject: [PATCH] web: Add radiology major tags --- vetupdates/vetupdates_search.js | 25 ++++++++++++++++++++++++- 1 file changed, 24 insertions(+), 1 deletion(-) diff --git a/vetupdates/vetupdates_search.js b/vetupdates/vetupdates_search.js index 104b4b8..0bd1e3d 100644 --- a/vetupdates/vetupdates_search.js +++ b/vetupdates/vetupdates_search.js @@ -57,7 +57,30 @@ const kAllSites = new Map([ 'transfusion', 'trauma', ]), - new Site('R', []), + new Site( + 'R', + [ + 'artificial intelligence', + 'cardiovascular', + 'ct', + 'endocrine', + 'exotics', + 'gastrointestinal and pancreas', + 'genital', + 'hematopoietic', + 'hepatobiliary', + 'imaging guided procedures', + 'lymphatic', + 'mri', + 'musculoskeletal', + 'nervous system', + 'pet nm', + 'radiation oncology', + 'respiratory', + 'ultrasound', + 'urinary', + 'x rays', + ]), ].map(site => [site.id, site])); function getMajorTags(siteId) { return kAllSites.get(siteId).majorTags; }