aboutsummaryrefslogtreecommitdiff
path: root/lib/pleroma/web/websub/websub_client_subscription.ex
blob: 105b0069fb9ca9e1ac2cd2f25d632c86d7f5fad9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Pleroma: A lightweight social networking server
# 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
    field(:topic, :string)
    field(:secret, :string)
    field(:valid_until, :naive_datetime)
    field(:state, :string)
    field(:subscribers, {:array, :string}, default: [])
    field(:hub, :string)
    belongs_to(:user, User)

    timestamps()
  end
end