Remerge of hashtag following (#341)
[akkoma] / lib / pleroma / web / api_spec / schemas / tag.ex
index 657b675e5ad40b773a9536652d45e5039aeae20a..41b5e5c785277cdfb971f796037f4a608874c0e9 100644 (file)
@@ -17,11 +17,16 @@ defmodule Pleroma.Web.ApiSpec.Schemas.Tag do
         type: :string,
         format: :uri,
         description: "A link to the hashtag on the instance"
+      },
+      following: %Schema{
+        type: :boolean,
+        description: "Whether the authenticated user is following the hashtag"
       }
     },
     example: %{
       name: "cofe",
-      url: "https://lain.com/tag/cofe"
+      url: "https://lain.com/tag/cofe",
+      following: false
     }
   })
 end