19 lines
		
	
	
	
		
			427 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			19 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
 | 
