akkoma/lib/pleroma/web/thread_mute.ex

27 lines
648 B
Elixir
Raw Normal View History

2019-02-05 12:35:24 +00:00
# Pleroma: A lightweight social networking server
# Copyright © 2017-2019 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only
defmodule Pleroma.Web.ThreadMute do
use Ecto.Schema
alias Pleroma.{Activity, Notification, User}
schema "thread_mutes" do
2019-02-07 21:25:07 +00:00
belongs_to(:user, User, type: Pleroma.FlakeId)
2019-02-05 12:35:24 +00:00
field(:context, :string)
end
def add_mute(user, id) do
2019-02-07 21:25:07 +00:00
user_id = user.id
2019-02-05 12:35:24 +00:00
%{data: %{"context" => context}} = Activity.get_by_id(id)
2019-02-07 21:25:07 +00:00
Pleroma.Repo.insert(%Pleroma.Web.ThreadMute{user: user_id, context: context})
2019-02-05 12:35:24 +00:00
end
def remove_mute(user, id) do
end
def mute_thread() do
end
end