Add test for Plume Articles
[akkoma] / test / support / factory.ex
index 5cf456e3ced90dc45800e3973bd8656ed71e5644..6c48d390f04a791b4608cdf87afe269de137c7b8 100644 (file)
@@ -146,4 +146,15 @@ defmodule Pleroma.Factory do
       subscribers: []
     }
   end
+
+  def oauth_app_factory do
+    %Pleroma.Web.OAuth.App{
+      client_name: "Some client",
+      redirect_uris: "https://example.com/callback",
+      scopes: "read",
+      website: "https://example.com",
+      client_id: "aaabbb==",
+      client_secret: "aaa;/&bbb"
+    }
+  end
 end