e40ef673e43640059fa00f7ee103f12367152f3d
hiram
  Thu Jan 2 10:32:53 2020 -0800
update restricted list for lovd tables Short Long and add redmine24666 test refs #24666

diff --git src/hg/hubApi/apiUtils.c src/hg/hubApi/apiUtils.c
index c4c5d48..bda52d8 100644
--- src/hg/hubApi/apiUtils.c
+++ src/hg/hubApi/apiUtils.c
@@ -626,30 +626,36 @@
  * takes care of the situation where the tableName might be for a table
  * that has no trackDb entry
  */
 if (sameOk(tableName, "cosmicRegions"))
   ret = TRUE;
 else if (sameOk(tableName, "decipherRaw"))
   ret = TRUE;
 else if (sameOk(tableName, "knownToDecipher"))
   ret = TRUE;
 else if (sameOk(tableName, "knownCanonToDecipher"))
   ret = TRUE;
 else if (sameOk(tableName, "decipherSnvsRaw"))
   ret = TRUE;
 else if (sameOk(tableName, "lovd"))
   ret = TRUE;
+else if (sameOk(tableName, "lovdShort"))
+  ret = TRUE;
+else if (sameOk(tableName, "lovdLong"))
+  ret = TRUE;
+else if (sameOk(tableName, "lovdComp"))
+  ret = TRUE;
 else if (sameOk(tableName, "hgmd"))
   ret = TRUE;
 else
     {
     if (tdb)	/* may not have a tdb at this time */
 	{
 	char *tbOff = trackDbSetting(tdb, "tableBrowser");
 	if (tbOff && startsWithWord("off", tbOff))
 	    ret = TRUE;
 	}
     }
 return ret;
 }
 
 boolean isWiggleDataTable(char *type)