Skip to content
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
4 changes: 0 additions & 4 deletions mint.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,7 @@
"dark": "/logo/dark.svg",
"href": "https://mintlify.com"
},
"layout": "sidenav",
"favicon": "/favicon.svg",
"sidebar": {
"items": "border"
},
"colors": {
"primary": "#0D9373",
"light": "#55D799",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,11 @@ You can authenticate users through handshake methods such as:

Partial Authentication shares all the same features as [Authentication](./authentication), but with the ability to allow unauthenticated users to view certain pages.

By default, all pages are protected. You can specify which pages should be publicly accessible by adding the `isPublic` property to the page's frontmatter.
By default, all pages are protected. You can specify which pages should be publicly accessible by adding the `public` property to the page's frontmatter.

```mdx
---
title: "My Page"
isPublic: true
public: true
---
```
Loading