Jake Vanderwerf
5 hours ago 3baf3d2545ba6ece6b74a64c0def59bd0774cf54
inc/rest/routes/ApprovalRoutes.php
@@ -41,11 +41,11 @@
        $this->termTypes = [];
      $this->allTypes = [];
        if ($this->hasMemberApproval) {
            $this->userTypes = Registrar::getFeatured('approve_new', 'user');
            $this->userTypes = Registrar::withFeature('approve_new', 'user');
            $this->allTypes = $this->userTypes;
        }
        if (Site::has('term_approval')) {
            $this->termTypes = Registrar::getFeatured('approve_new', 'term');
            $this->termTypes = Registrar::withFeature('approve_new', 'term');
            $this->allTypes[] = 'term';
        }
    }