grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
		
			
				
	
	
		
			23 lines
		
	
	
	
		
			781 B
		
	
	
	
		
			Elixir
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
	
		
			781 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.MastodonAPI.SubscriptionViewTest do
 | 
						|
  use Pleroma.DataCase, async: true
 | 
						|
  import Pleroma.Factory
 | 
						|
  alias Pleroma.Web.MastodonAPI.SubscriptionView, as: View
 | 
						|
  alias Pleroma.Web.Push
 | 
						|
 | 
						|
  test "Represent a subscription" do
 | 
						|
    subscription = insert(:push_subscription, data: %{"alerts" => %{"mention" => true}})
 | 
						|
 | 
						|
    expected = %{
 | 
						|
      alerts: %{"mention" => true},
 | 
						|
      endpoint: subscription.endpoint,
 | 
						|
      id: to_string(subscription.id),
 | 
						|
      server_key: Keyword.get(Push.vapid_config(), :public_key)
 | 
						|
    }
 | 
						|
 | 
						|
    assert expected == View.render("show.json", %{subscription: subscription})
 | 
						|
  end
 | 
						|
end
 |