1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-22 14:30:16 +00:00
akkoma/lib/pleroma/web/websub/websub_server_subscription.ex

14 lines
294 B
Elixir
Raw Normal View History

2017-04-20 09:16:06 +01:00
defmodule Pleroma.Web.Websub.WebsubServerSubscription do
use Ecto.Schema
schema "websub_server_subscriptions" do
field :topic, :string
field :callback, :string
field :secret, :string
field :valid_until, :naive_datetime
field :state, :string
2017-04-20 16:47:33 +01:00
timestamps()
2017-04-20 09:16:06 +01:00
end
end