From ee7bc9545bd1965bb95cc89a98d6c336b8a55d06 Mon Sep 17 00:00:00 2001
From: Jake Vanderwerf <get@jakevanderwerf.ca>
Date: Wed, 11 Feb 2026 00:45:25 +0000
Subject: [PATCH] =cleaning up some of the console logs in crud.js
---
JVBase.php | 10 ++++++++--
1 files changed, 8 insertions(+), 2 deletions(-)
diff --git a/JVBase.php b/JVBase.php
index a9519c0..3de959a 100644
--- a/JVBase.php
+++ b/JVBase.php
@@ -23,6 +23,7 @@
use JVBase\rest\routes\FeedRoutes;
use JVBase\rest\routes\FavouritesRoutes;
use JVBase\rest\routes\IntegrationsSquareRoutes;
+use JVBase\rest\routes\IntegrationsHelcimRoutes;
use JVBase\rest\routes\NotificationsRoutes;
use JVBase\rest\routes\ContentRoutes;
use JVBase\rest\routes\TermRoutes;
@@ -30,6 +31,7 @@
//use JVBase\rest\routes\BioRoutes;
use JVBase\rest\routes\SettingsRoutes;
//use JVBase\rest\routes\ShopRoutes;
+use JVBase\rest\routes\ContentTermsRoutes;
use JVBase\rest\routes\SEORoutes;
use JVBase\rest\routes\QueueRoutes;
use JVBase\rest\routes\ErrorRoutes;
@@ -43,7 +45,7 @@
use JVBase\rest\routes\VoteRoutes;
use JVBase\rest\routes\Invitations;
use JVBase\rest\routes\ApprovalRoutes;
-//use JVBase\rest\routes\AdminRoutes;
+use JVBase\rest\routes\AdminRoutes;
use JVBase\rest\routes\IntegrationsRoutes;
use JVBase\utility\Features;
@@ -127,6 +129,9 @@
if (Features::hasIntegration('square')) {
$this->routes['square'] = new IntegrationsSquareRoutes();
}
+ if (Features::hasIntegration('helcim')) {
+ $this->routes['helcim'] = new IntegrationsHelcimRoutes();
+ }
if (Features::forSite()->has('feed_block')) {
$this->routes['feed'] = new FeedRoutes();
@@ -145,10 +150,11 @@
if (jvbSiteHasDashboard()) {
$this->routes['error'] = new ErrorRoutes();
-// $this->routes['admin'] = new AdminRoutes();
+ $this->routes['admin'] = new AdminRoutes();
$this->routes['content'] = new ContentRoutes();
// $this->routes['bio'] = new BioRoutes();
// $this->routes['shop'] = new ShopRoutes();
+ $this->routes['contentTax'] = new ContentTermsRoutes();
$this->routes['options'] = new OptionsRoutes();
}
--
Gitblit v1.10.0