dbExists.js 148 B

1234567891011
  1. /*
  2. This unit test test for if db exists api call
  3. */
  4. if (DBTableExists("auth")){
  5. sendJSONResp("true");
  6. }else{
  7. sendJSONResp("false");
  8. }