22 lines
		
	
	
	
		
			602 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
	
		
			602 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.Web.TwitterAPI.UtilView do
 | 
						|
  use Pleroma.Web, :view
 | 
						|
  import Phoenix.HTML.Form
 | 
						|
  alias Pleroma.Web
 | 
						|
 | 
						|
  def status_net_config(instance) do
 | 
						|
    """
 | 
						|
    <config>
 | 
						|
    <site>
 | 
						|
    <name>#{Keyword.get(instance, :name)}</name>
 | 
						|
    <site>#{Web.base_url()}</site>
 | 
						|
    <textlimit>#{Keyword.get(instance, :limit)}</textlimit>
 | 
						|
    <closed>#{!Keyword.get(instance, :registrations_open)}</closed>
 | 
						|
    </site>
 | 
						|
    </config>
 | 
						|
    """
 | 
						|
  end
 | 
						|
end
 |