mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-01 06:14:07 +00:00
20 lines
427 B
Elixir
20 lines
427 B
Elixir
# 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
|