feat: #1001 - builds a way to allow list view to search multiple fields

* make textfields searchable

* shorten namings in placeholder function

* chore: finishes listSearchableFields

Co-authored-by: Christian Reichart <christian.reichart@camperboys.com>
This commit is contained in:
James Mikrut
2022-09-12 16:38:02 -07:00
committed by GitHub
parent d5ccd45b53
commit a1083727ef
10 changed files with 101 additions and 18 deletions

View File

@@ -19,6 +19,11 @@ const init = async () => {
},
});
// Redirect root to Admin panel
expressApp.get('/', (_, res) => {
res.redirect('/admin');
});
const externalRouter = express.Router();
externalRouter.use(payload.authenticate);