DNS stuff

This commit is contained in:
2024-08-10 17:47:44 -04:00
parent 92df05540b
commit 3df3341235
12 changed files with 587 additions and 11 deletions
+2
View File
@@ -13,6 +13,8 @@ router.use('/user', middleware.auth, require('./user'));
// API routes for working with hosts. All endpoints need to be have valid user.
router.use('/host', middleware.auth, require('./host'));
router.use('/dns', middleware.auth, require('./dns'));
// API routes for working with hosts. All endpoints need to be have valid user.
router.use('/cert', middleware.auth, require('./cert'));