Add user and hub to websub client subscriptions.
This commit is contained in:
parent
d1dce56a85
commit
e8a311ecff
|
@ -1,5 +1,6 @@
|
||||||
defmodule Pleroma.Web.Websub.WebsubClientSubscription do
|
defmodule Pleroma.Web.Websub.WebsubClientSubscription do
|
||||||
use Ecto.Schema
|
use Ecto.Schema
|
||||||
|
alias Pleroma.User
|
||||||
|
|
||||||
schema "websub_client_subscriptions" do
|
schema "websub_client_subscriptions" do
|
||||||
field :topic, :string
|
field :topic, :string
|
||||||
|
@ -7,6 +8,8 @@ defmodule Pleroma.Web.Websub.WebsubClientSubscription do
|
||||||
field :valid_until, :naive_datetime
|
field :valid_until, :naive_datetime
|
||||||
field :state, :string
|
field :state, :string
|
||||||
field :subscribers, {:array, :string}, default: []
|
field :subscribers, {:array, :string}, default: []
|
||||||
|
field :hub, :string
|
||||||
|
belongs_to :user, User
|
||||||
|
|
||||||
timestamps()
|
timestamps()
|
||||||
end
|
end
|
||||||
|
|
|
@ -0,0 +1,10 @@
|
||||||
|
defmodule Pleroma.Repo.Migrations.AddUserAndHub do
|
||||||
|
use Ecto.Migration
|
||||||
|
|
||||||
|
def change do
|
||||||
|
alter table(:websub_client_subscriptions) do
|
||||||
|
add :hub, :string
|
||||||
|
add :user_id, references(:users)
|
||||||
|
end
|
||||||
|
end
|
||||||
|
end
|
Loading…
Reference in New Issue