Jake Vanderwerf
2025-11-25 2a2303d1dccc120dd7aa5f6b6ade0f89e0064850
JVBase.php
@@ -109,14 +109,14 @@
         'login'        => new LoginRoutes(),
         'integrations' => new IntegrationsRoutes(),
      ];
        if (jvbSiteUsesFeedBlock()) {
        if (Features::forSite()->has('feed_block')) {
            $this->routes['feed'] = new FeedRoutes();
        }
        if (jvbSiteHasNotifications()) {
         $this->managers['notifications'] = new NotificationManager();
            $this->routes['notifications'] = new NotificationsRoutes();
        }
        if (jvbSiteUsesFeedBlock() || jvbSiteHasDashboard()) {
        if (Features::forSite()->has('feed_block') || jvbSiteHasDashboard()) {
            $this->routes['term'] = new TermRoutes();
        }
@@ -263,7 +263,6 @@
    public function activate():void
    {
        error_log('Activate!');
        // Activate roles - will be properly initialized after post types are registered
        $this->roles()->activate();
    }