grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			646 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			646 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.ApiSpec.Schemas.List do
 | 
						|
  alias OpenApiSpex.Schema
 | 
						|
 | 
						|
  require OpenApiSpex
 | 
						|
 | 
						|
  OpenApiSpex.schema(%{
 | 
						|
    title: "List",
 | 
						|
    description: "Represents a list of users",
 | 
						|
    type: :object,
 | 
						|
    properties: %{
 | 
						|
      id: %Schema{type: :string, description: "The internal database ID of the list"},
 | 
						|
      title: %Schema{type: :string, description: "The user-defined title of the list"}
 | 
						|
    },
 | 
						|
    example: %{
 | 
						|
      "id" => "12249",
 | 
						|
      "title" => "Friends"
 | 
						|
    }
 | 
						|
  })
 | 
						|
end
 |