Merge branch 'account-notes' into 'develop'
[akkoma] / lib / pleroma / web / api_spec / schemas / account_relationship.ex
index 163066032a9154d690b977dfe84ce06cfac48433..5d9e3b56e3310f2893fb784cc2921d9c4aacfdce 100644 (file)
@@ -25,7 +25,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.AccountRelationship do
       note: %Schema{type: :string},
       requested: %Schema{type: :boolean},
       showing_reblogs: %Schema{type: :boolean},
-      subscribing: %Schema{type: :boolean}
+      subscribing: %Schema{type: :boolean},
+      notifying: %Schema{type: :boolean}
     },
     example: %{
       "blocked_by" => false,
@@ -40,7 +41,8 @@ defmodule Pleroma.Web.ApiSpec.Schemas.AccountRelationship do
       "note" => "",
       "requested" => false,
       "showing_reblogs" => true,
-      "subscribing" => false
+      "subscribing" => false,
+      "notifying" => false
     }
   })
 end