pleroma/lib/pleroma/web/websub/websub_client_subscription.ex

21 lines
594 B
Elixir
Raw Normal View History

# Pleroma: A lightweight social networking server
2018-12-31 16:41:47 +01:00
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.Websub.WebsubClientSubscription do
use Ecto.Schema
alias Pleroma.User
schema "websub_client_subscriptions" do
2018-03-30 15:01:53 +02:00
field(:topic, :string)
field(:secret, :string)
2019-03-20 13:59:27 +01:00
field(:valid_until, :naive_datetime_usec)
2018-03-30 15:01:53 +02:00
field(:state, :string)
field(:subscribers, {:array, :string}, default: [])
field(:hub, :string)
belongs_to(:user, User, type: FlakeId.Ecto.CompatType)
timestamps()
end
end