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