summaryrefslogtreecommitdiff
path: root/lib/pleroma/plugs/set_user_session_id_plug.ex
blob: 730c4ac742bb1fef3549dcbddd3e881ee20c4dad (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Pleroma: A lightweight social networking server
# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
# SPDX-License-Identifier: AGPL-3.0-only

defmodule Pleroma.Plugs.SetUserSessionIdPlug do
  import Plug.Conn
  alias Pleroma.User

  def init(opts) do
    opts
  end

  def call(%{assigns: %{user: %User{id: id}}} = conn, _) do
    conn
    |> put_session(:user_id, id)
  end

  def call(conn, _), do: conn
end