15 lines
		
	
	
	
		
			407 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			407 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
| # Pleroma: A lightweight social networking server
 | |
| # Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>
 | |
| # SPDX-License-Identifier: AGPL-3.0-only
 | |
| 
 | |
| defmodule Pleroma.Web.TwitterAPI.RemoteFollowView do
 | |
|   use Pleroma.Web, :view
 | |
|   import Phoenix.HTML.Form
 | |
|   alias Pleroma.Web.Gettext
 | |
| 
 | |
|   def avatar_url(user) do
 | |
|     user
 | |
|     |> Pleroma.User.avatar_url()
 | |
|     |> Pleroma.Web.MediaProxy.url()
 | |
|   end
 | |
| end
 | 
