Skip to content

Commit f8ccabd

Browse files
committed
Hide tutorials from list
1 parent 133169f commit f8ccabd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

app/components/TutorialsArticles.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ const props = defineProps<{
77
const { data: articles } = await useAsyncData(props.path + '-preview', () => {
88
const query = queryCollection('content')
99
.where('path', 'LIKE', `${props.path}/%`)
10-
.select('title', 'description', 'icon', 'path', 'technologies');
10+
.select('title', 'description', 'icon', 'path', 'technologies', 'navigation');
1111
1212
if (props.limit) {
1313
query.limit(props.limit);
@@ -32,7 +32,7 @@ const imageSrc = (article: { technologies?: string[] }) => {
3232
:key="article.path"
3333
>
3434
<UPageCard
35-
v-if="article.title"
35+
v-if="article.title && article.navigation !== false"
3636
:to="article.path"
3737
:icon="article.icon"
3838
:ui="{

content/tutorials/5.extensions/validating-third-party-jwts-in-directus.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
slug: validating-third-party-jwts-in-directus
33
title: Validating Third-Party JWTs in Directus (with Okta)
44
description: Learn how to translate third part JWT's to Directus accountability
5+
navigation: false
56
authors:
67
- name: Judd Abraham
78
title: Senior Software Engineer

0 commit comments

Comments
 (0)