1
0
Fork 0
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-23 22:26:49 +00:00
akkoma/lib/pleroma/web/websub/websub_server_subscription.ex
2018-03-30 15:01:53 +02:00

13 lines
299 B
Elixir

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)
timestamps()
end
end