Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

set a default enterprise admonition title #1217

Merged
merged 1 commit into from
Feb 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion content/docs/capabilities/authentication.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ By configuring your applications to route requests to Pomerium’s Proxy service

## External data sources (Enterprise)

:::enterprise Pomerium Enterprise
:::enterprise

[Enterprise customers](https://www.pomerium.com/enterprise-sales/) can enforce context-aware access with Pomerium’s [external data sources](/docs/integrations) feature (directory sync).

Expand Down
6 changes: 3 additions & 3 deletions content/docs/capabilities/authorization.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ You can apply policies in Pomerium to [Namespaces](/docs/capabilities/namespacin

### Namespaces

:::enterprise Pomerium Enterprise
:::enterprise

Namespace support is available only for [Enterprise customers](https://www.pomerium.com/enterprise-sales/).

Expand Down Expand Up @@ -106,7 +106,7 @@ In this example, Pomerium will grant a user access if their email address ends i

### Enterprise Console GUI

:::enterprise Pomerium Enterprise
:::enterprise

The Enterprise Console provides a policy builder GUI so you can build policies and reapply them to multiple routes and namespaces. See our [**Enterprise**](/docs/deploy/enterprise) page to learn more.

Expand Down Expand Up @@ -202,7 +202,7 @@ Pomerium Core and Enterprise offer the following options for overriding your aut

## Manage devices

:::enterprise Pomerium Enterprise
:::enterprise

[Device identity](/docs/capabilities/device-identity) is an Enterprise feature. Check out our [Enterprise](/docs/deploy/enterprise) page to learn more.

Expand Down
2 changes: 1 addition & 1 deletion content/docs/capabilities/branding.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ description: Add custom colors, logos, and error messages.

# Custom Branding / White Labeling

:::enterprise Pomerium Enterprise
:::enterprise

This article describes a use case available to [Pomerium Enterprise](/docs/deploy/enterprise/install) customers.

Expand Down
2 changes: 1 addition & 1 deletion content/docs/capabilities/original-request-context.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ description: This article describes how the original user context is passed seco

# Original User Context

:::enterprise Pomerium Enterprise
:::enterprise

This article describes a use case available to [Pomerium Enterprise](/docs/deploy/enterprise/install) customers.

Expand Down
2 changes: 1 addition & 1 deletion content/docs/guides/jenkins.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -176,7 +176,7 @@ Sign in to continue to the Jenkins dashboard.
</TabItem>
<TabItem label="Enterprise" value="Enterprise">

:::enterprise Pomerium Enterprise
:::enterprise

This guide assumes you can access the [Enterprise Console](/docs/deploy/enterprise).

Expand Down
2 changes: 1 addition & 1 deletion content/docs/guides/tooljet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ In your browser, go to the external ToolJet URL to set up your workspace.
</TabItem>
<TabItem value="Enterprise" label="Enterprise">

:::enterprise Pomerium Enterprise
:::enterprise

This guide assumes you can access the [Enterprise Console](/docs/deploy/enterprise/install).

Expand Down
2 changes: 1 addition & 1 deletion content/docs/integrations.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ sidebar_label: integrations
description: Extend your authorization policies with data from external sources.
---

:::enterprise Pomerium Enterprise
:::enterprise

This article describes a use case only available to [Pomerium Enterprise](/docs/deploy/enterprise) customers.

Expand Down
2 changes: 1 addition & 1 deletion src/theme/Admonition/Types.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ function EnterpriseAdmonition(props) {
<div className={styles.enterprise}>
<div className={styles.enterprise_header}>
<BusinessIcon />
<h5>{props.title}</h5>
<h5>{props.title || 'Pomerium Enterprise'}</h5>
</div>
{props.children}
</div>
Expand Down
Loading