docs: migrate to Mintlify (#8154)

This commit is contained in:
ᴊᴏᴇ ᴄʜᴇɴ
2026-02-07 17:32:52 -05:00
committed by GitHub
parent edc1478f6b
commit 9dd3e58f7b
142 changed files with 9544 additions and 82 deletions

View File

@@ -0,0 +1,4 @@
---
title: "Add email addresses"
openapi: "POST /user/emails"
---

View File

@@ -0,0 +1,4 @@
---
title: "Check if a user follows another"
openapi: "GET /users/{username}/following/{target}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Check if you follow a user"
openapi: "GET /user/following/{target}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create a public key"
openapi: "POST /user/keys"
---

View File

@@ -0,0 +1,4 @@
---
title: "Create an access token"
openapi: "POST /users/{username}/tokens"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete a public key"
openapi: "DELETE /user/keys/{id}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Delete email addresses"
openapi: "DELETE /user/emails"
---

View File

@@ -0,0 +1,4 @@
---
title: "Follow a user"
openapi: "PUT /user/following/{target}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get a single public key"
openapi: "GET /user/keys/{id}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get a single user"
openapi: "GET /users/{username}"
---

View File

@@ -0,0 +1,4 @@
---
title: "Get the authenticated user"
openapi: "GET /user"
---

View File

@@ -0,0 +1,4 @@
---
title: "List access tokens"
openapi: "GET /users/{username}/tokens"
---

View File

@@ -0,0 +1,4 @@
---
title: "List email addresses"
openapi: "GET /user/emails"
---

View File

@@ -0,0 +1,4 @@
---
title: "List followers of a user"
openapi: "GET /users/{username}/followers"
---

View File

@@ -0,0 +1,4 @@
---
title: "List public keys for a user"
openapi: "GET /users/{username}/keys"
---

View File

@@ -0,0 +1,4 @@
---
title: "List users followed by a user"
openapi: "GET /users/{username}/following"
---

View File

@@ -0,0 +1,4 @@
---
title: "List who you are following"
openapi: "GET /user/following"
---

View File

@@ -0,0 +1,4 @@
---
title: "List your followers"
openapi: "GET /user/followers"
---

View File

@@ -0,0 +1,4 @@
---
title: "List your public keys"
openapi: "GET /user/keys"
---

View File

@@ -0,0 +1,4 @@
---
title: "Search for users"
openapi: "GET /users/search"
---

View File

@@ -0,0 +1,4 @@
---
title: "Unfollow a user"
openapi: "DELETE /user/following/{target}"
---