Features
Ticket Support Module

Ticket Support Module

This module allows an organization to open support tickets with the SuperAdmin

SaaS Ticket Support Module

The module is only available by default for ADMIN type members of the organization. To deactivate go to the file OrganizationAdminSidebar

{
  isOrganizationAdmin(userMembership) && (
    <li className="mt-auto">
      <Link
        onClick={() => toggleSidebarMenu()}
        href="/home/support"
        className="group -mx-4 flex gap-x-3 rounded-md p-2  font-semibold leading-6   "
      >
        <LifebuoyIcon
          className="h-6 w-6 shrink-0 text-primary "
          aria-hidden="true"
        />
        Support
      </Link>
    </li>
  );
}

You can delete this condition and it will be available to all members of the organization