> ## Documentation Index
> Fetch the complete documentation index at: https://docs.curator.interworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Disabling Link-preview Security 

> Disable link preview security features when needed for specific use cases or legacy browser compatibility.

export const BackendNavPath = ({levelOne, levelTwo, levelThree, tab, section}) => {
  const levels = [levelOne, levelTwo, levelThree].filter(Boolean);
  const lastLevel = levels.length ? levels[levels.length - 1] : '';
  return <span>
      In the <a href="/setup/installation/linux_installation">backend of Curator</a> using the left-hand navigation,
      navigate to the
      {levelOne && <strong>{" " + levelOne}</strong>}
      {levelOne && levelTwo && " > "}
      {levelTwo && <strong>{levelTwo}</strong>}
      {levelTwo && levelThree && " > "}
      {levelThree && <strong>{levelThree}</strong>} page.
      {(tab || section) && <>
          {" "}On the {lastLevel} page
          {tab && <> click the <strong>{tab}</strong> tab</>}
          {tab && section && " and"}
          {section && <> expand the <strong>{section}</strong> section</>}.
        </>}
    </span>;
};

Curator will automatically check with the source system (e.g. Tableau, ThoughtSpot, Sigma) when a user logs in to
determine their access to linked content from those systems. However, you can bypass this initial check and expose
links to all content to your users while still surfacing an
[Access Denied/403 page](/site_content_design/user_notifications_and_email/error_pages)
to prevent them from accessing content.

## Tableau

In order to disable security-checks on all content a user could see in the menu navigation system, or via a
tile/preview thumbnail:

1. <BackendNavPath levelOne="Settings" levelTwo="Tableau" levelThree="Tableau Server Settings" tab="Advanced" />
2. Enable the **Skip checking menu item's Dashboard permissions** and save your settings.
3. If you would like to set up a custom "access denied" page follow the instructions on the [Error Pages document](/site_content_design/user_notifications_and_email/error_pages).

## ThoughtSpot

In order to disable all permission checks for ThoughtSpot content:

1. <BackendNavPath levelOne="Settings" levelTwo="ThoughtSpot" levelThree="ThoughtSpot Settings" tab="Advanced" />
2. Enable the **Skip checking all content permissions** and save your settings.

## Power BI

In order to disable security-checks on all Power BI content a user could see in the menu navigation system, or via a
tile/preview thumbnail:

1. <BackendNavPath levelOne="Settings" levelTwo="Power BI" levelThree="Power BI Settings" tab="Advanced" />
2. Enable the **Skip checking menu item permissions** and save your settings.
3. If you would like to set up a custom "access denied" page follow the instructions on the [Error Pages document](/site_content_design/user_notifications_and_email/error_pages).

To disable all permission checks for Power BI content:

1. <BackendNavPath levelOne="Settings" levelTwo="Power BI" levelThree="Power BI Settings" tab="Advanced" />
2. Enable the **Skip checking all Power BI permissions** and save your settings.

## Sigma

In order to disable all permission checks for Sigma content:

1. <BackendNavPath levelOne="Settings" levelTwo="Sigma" levelThree="Sigma Settings" tab="Advanced" />
2. Enable the **Skip checking all workbook permissions** and save your settings.
