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