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

Remove lexicons subpage routes and fix 404 links #295

Closed
wants to merge 1 commit into from
Closed
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
10 changes: 5 additions & 5 deletions content/guides/applications.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ If you're noticing the "type" field and wondering how that works, see the [Intro

You'll notice "cids" in some of the schemas. A "cid" is a "Content ID," a sha256 hash of some referenced content. These are used to ensure integrity; for instance, a like includes the cid of the post being liked so that a future edit can be detected and noted in the UI.

### <a href="/lexicons/app-bsky">app.bsky.graph.follow</a>
### <a href="/guides/applications#appbskygraphfollow">app.bsky.graph.follow</a>

A social follow. Example:

Expand All @@ -87,7 +87,7 @@ A social follow. Example:
}
```

### <a href="/lexicons/app-bsky">app.bsky.feed.like</a>
### <a href="/guides/applications#appbskyfeedlike">app.bsky.feed.like</a>

A like on a piece of content. Example:

Expand All @@ -102,7 +102,7 @@ A like on a piece of content. Example:
}
```

### <a href="/lexicons/app-bsky">app.bsky.feed.post</a>
### <a href="/guides/applications#appbskyfeedpost">app.bsky.feed.post</a>

A microblog post. Example:

Expand All @@ -114,7 +114,7 @@ A microblog post. Example:
}
```

### <a href="/lexicons/app-bsky">app.bsky.actor.profile</a>
### <a href="/guides/applications#appbskyactorprofile">app.bsky.actor.profile</a>

A user profile. Example:

Expand All @@ -126,7 +126,7 @@ A user profile. Example:
}
```

### <a href="/lexicons/app-bsky">app.bsky.feed.repost</a>
### <a href="/guides/applications#appbskyfeedrepost">app.bsky.feed.repost</a>

A repost of an existing microblog post (similar to retweets). Example:

Expand Down
70 changes: 0 additions & 70 deletions next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -33,76 +33,6 @@ const nextConfig = {
destination: 'https://github.com/did-method-plc/did-method-plc',
permanent: false,
},
{
source: '/lexicons/com-atproto-admin',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-identity',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-label',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-moderation',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-repo',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-server',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-sync',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/com-atproto-sync',
destination: '/lexicons/com-atproto',
permanent: false,
},
{
source: '/lexicons/app-bsky-actor',
destination: '/lexicons/app-bsky',
permanent: false,
},
{
source: '/lexicons/app-bsky-embed',
destination: '/lexicons/app-bsky',
permanent: false,
},
{
source: '/lexicons/app-bsky-feed',
destination: '/lexicons/app-bsky',
permanent: false,
},
{
source: '/lexicons/app-bsky-graph',
destination: '/lexicons/app-bsky',
permanent: false,
},
{
source: '/lexicons/app-bsky-notification',
destination: '/lexicons/app-bsky',
permanent: false,
},
{
source: '/lexicons/app-bsky-richtext',
destination: '/lexicons/app-bsky',
permanent: false,
},
// redirects to Bluesky API docs site
{
source: '/community',
Expand Down