refactor(federation): 🚚 Change Like path from /objects/{id} to /likes/{id}

This commit is contained in:
Jesse Wierzbinski 2025-03-28 22:06:42 +01:00
parent 3d3e64edab
commit d75254fc71
No known key found for this signature in database
18 changed files with 102 additions and 112 deletions

View file

@ -6,6 +6,7 @@ const route = createRoute({
method: "get",
path: "/.well-known/host-meta",
summary: "Well-known host-meta",
tags: ["Federation"],
responses: {
200: {
description: "Host-meta",

View file

@ -8,6 +8,7 @@ const route = createRoute({
method: "get",
path: "/.well-known/nodeinfo/2.0",
summary: "Well-known nodeinfo 2.0",
tags: ["Federation"],
responses: {
200: {
description: "Nodeinfo 2.0",

View file

@ -6,6 +6,7 @@ const route = createRoute({
method: "get",
path: "/.well-known/nodeinfo",
summary: "Well-known nodeinfo",
tags: ["Federation"],
responses: {
200: {
description: "Nodeinfo links",

View file

@ -12,6 +12,7 @@ const route = createRoute({
method: "get",
path: "/.well-known/versia",
summary: "Get instance metadata",
tags: ["Federation"],
responses: {
200: {
description: "Instance metadata",

View file

@ -36,6 +36,7 @@ const route = createRoute({
request: {
query: schemas.query,
},
tags: ["Federation"],
responses: {
200: {
description: "User information",