Allow to refresh instance outbox when they accept subscription

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel
2020-09-02 08:59:59 +02:00
parent c011a988a8
commit 489fd74545
20 changed files with 427 additions and 227 deletions

View File

@@ -0,0 +1,19 @@
defmodule Mobilizon.Storage.Repo.Migrations.FixRelayVisibility do
use Ecto.Migration
alias Mobilizon.Actors.Actor
alias Mobilizon.Storage.Repo
import Ecto.Query
def up do
Actor
|> where(preferred_username: "relay")
|> where(type: "Application")
|> where([a], is_nil(a.domain))
|> update(set: [visibility: "public"])
|> Repo.update_all([])
end
def down do
IO.puts("Not changing Relay visibility back")
end
end