Add missing Copyright headers
authorMark Felder <feld@FreeBSD.org>
Mon, 12 Oct 2020 17:00:50 +0000 (12:00 -0500)
committerMark Felder <feld@FreeBSD.org>
Mon, 12 Oct 2020 17:00:50 +0000 (12:00 -0500)
53 files changed:
lib/mix/tasks/pleroma/count_statuses.ex
lib/mix/tasks/pleroma/digest.ex
lib/mix/tasks/pleroma/docs.ex
lib/mix/tasks/pleroma/email.ex
lib/mix/tasks/pleroma/notification_settings.ex
lib/pleroma/config/oban.ex
lib/pleroma/docs/generator.ex
lib/pleroma/docs/json.ex
lib/pleroma/docs/markdown.ex
lib/pleroma/emoji/pack.ex
lib/pleroma/gun/connection_pool.ex
lib/pleroma/gun/connection_pool/reclaimer.ex
lib/pleroma/gun/connection_pool/worker.ex
lib/pleroma/gun/connection_pool/worker_supervisor.ex
lib/pleroma/http/adapter_helper/default.ex
lib/pleroma/http/adapter_helper/hackney.ex
lib/pleroma/jwt.ex
lib/pleroma/moderation_log.ex
lib/pleroma/plugs/rate_limiter/limiter_supervisor.ex
lib/pleroma/plugs/rate_limiter/supervisor.ex
lib/pleroma/telemetry/logger.ex
lib/pleroma/web/activity_pub/builder.ex
lib/pleroma/web/activity_pub/side_effects.ex
lib/pleroma/web/mailer/subscription_controller.ex
lib/pleroma/web/pleroma_api/controllers/emoji_file_controller.ex
lib/pleroma/web/pleroma_api/controllers/emoji_pack_controller.ex
lib/pleroma/web/rich_media/parsers/ttl/aws_signed_url.ex
lib/pleroma/web/rich_media/parsers/ttl/ttl.ex
lib/pleroma/web/views/email_view.ex
lib/pleroma/web/views/mailer/subscription_view.ex
test/activity/ir/topics_test.exs
test/config/deprecation_warnings_test.exs
test/docs/generator_test.exs
test/fixtures/config/temp.secret.exs
test/mfa/backup_codes_test.exs
test/mfa/totp_test.exs
test/migrations/20200716195806_autolinker_to_linkify_test.exs
test/migrations/20200722185515_fix_malformed_formatter_config_test.exs
test/migrations/20200724133313_move_welcome_settings_test.exs
test/migrations/20200802170532_fix_legacy_tags_test.exs
test/safe_jsonb_set_test.exs
test/tasks/digest_test.exs
test/tasks/email_test.exs
test/tasks/emoji_test.exs
test/web/activity_pub/mrf/mrf_test.exs
test/web/activity_pub/object_validators/types/date_time_test.exs
test/web/activity_pub/object_validators/types/recipients_test.exs
test/web/chat_channel_test.exs
test/web/media_proxy/invalidation_test.exs
test/web/media_proxy/invalidations/http_test.exs
test/web/media_proxy/invalidations/script_test.exs
test/web/pleroma_api/controllers/two_factor_authentication_controller_test.exs
test/web/static_fe/static_fe_controller_test.exs

index e1e8195ddf307116b18731055c248bcb952efe13..8761d8f17e621aed500ce4302c115bfe5bc6eb7d 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.CountStatuses do
   @shortdoc "Re-counts statuses for all users"
 
index 3595f912d622ab0dd54de666adb7a4ddad553d08..cac148b8874650283a084257950ba5dbbf6efda9 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.Digest do
   use Mix.Task
   import Mix.Pleroma
index 6088fc71d33c8759a17723fcdb13b28e5caeaccd..ad5c37fc9b7ffb47b17d315a8ae078798102ceb8 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.Docs do
   use Mix.Task
   import Mix.Pleroma
index 9972cb9880d590acb293903a595a346e93e9ac8b..bc5facc09655cbb234d43563b8e4176ba4cbfb92 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.Email do
   use Mix.Task
   import Mix.Pleroma
index 00f5ba7bfe61ce5aba33238deb81fce5e1aab65a..f99275de13c557ae6501435b231ca07fa66871ac 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.NotificationSettings do
   @shortdoc "Enable&Disable privacy option for push notifications"
   @moduledoc """
index 9f601b1a3692d5e8d1cce18faa10550df883d4ff..8e0351d52341f6da9aaaf80d44636cfdcca77362 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Config.Oban do
   require Logger
 
index a671a62787cc33df4359012985c2c0b8b89fb729..a70f83b73a83e6f8c2d7ff5e5e6933d8fb408703 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Docs.Generator do
   @callback process(keyword()) :: {:ok, String.t()}
 
index feeb4320e62b10ed56b9160eea548fe83fe9c77d..13618b509430a72f839069e142bd269ecb03f9c4 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Docs.JSON do
   @behaviour Pleroma.Docs.Generator
   @external_resource "config/description.exs"
index da3f20f4341ae46b0cd29e10acd94e1092f081f5..eac0789a6d4b53baebeeacecb967d8ac058586b7 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Docs.Markdown do
   @behaviour Pleroma.Docs.Generator
 
index 8f1989ada53a41346e1fd76a72b3828739737643..0670f29f178f90910d83a9a01369fac095c5df30 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Emoji.Pack do
   @derive {Jason.Encoder, only: [:files, :pack, :files_count]}
   defstruct files: %{},
index f34602b73cd513239c956ca62174534159e84194..e322f192a21dc2776d685e6aa452805d985694a8 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Gun.ConnectionPool do
   @registry __MODULE__
 
index cea800882d4395cbdb443fc2ae68cf91cc6c6d14..241e8b04f47677bf19908d2c1eafd3c3c02d7d17 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Gun.ConnectionPool.Reclaimer do
   use GenServer, restart: :temporary
 
index bf57e9e5fd9ed9c457aa4ff4c6965c9060de9c5f..b71816bed053bc43faea2189d2ae2f5d1ab71af9 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Gun.ConnectionPool.Worker do
   alias Pleroma.Gun
   use GenServer, restart: :temporary
index 39615c9568a8d20094fd9797199aa1e1797bcfa6..4c23bcbd92b67cde82578ab5b1ef35f37d473f4d 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Gun.ConnectionPool.WorkerSupervisor do
   @moduledoc "Supervisor for pool workers. Does not do anything except enforce max connection limit"
 
index e13441316a165e2978ef911425f665dff2f9c3a4..8567a616b6e8f7852925bf39c39c3c1722f06514 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.HTTP.AdapterHelper.Default do
   alias Pleroma.HTTP.AdapterHelper
 
index ef84553c1c50efee2dc04e7cb64d35821fb87b72..ff60513fd0e45c29c197a74d64206e2a38f105ff 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.HTTP.AdapterHelper.Hackney do
   @behaviour Pleroma.HTTP.AdapterHelper
 
index 10102ff5df4acd426698cf6d65146b510eb2d878..faeb777817d7894ece737c0d5f9f437a2b829ffd 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.JWT do
   use Joken.Config
 
index 47036a6f624052174543b4bec9704f49c3d4c615..38a8634437e15ab13893f52ce99f6d2a3ef15b88 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.ModerationLog do
   use Ecto.Schema
 
index 884268d96249572784d3b0458fa6f7fc43feb28e..0bf5aadfb56fe6f2e4b7b7a53927ad2b038e3a2e 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Plugs.RateLimiter.LimiterSupervisor do
   use DynamicSupervisor
 
index 9672f78761535826dd712a8dd3b1194598ac8666..ce196df528768d5a2080a4cb9d02a9ed606a4cf5 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Plugs.RateLimiter.Supervisor do
   use Supervisor
 
index 197b1d091679fd85884f7ec40a7a3294e5333b9e..003079cf346fc0e4575211a20c22fa6e9392df75 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Telemetry.Logger do
   @moduledoc "Transforms Pleroma telemetry events to logs"
 
index 9a7b7d9deaeff57516a89c00c46e2aecd95186a0..298aff6b7aac17ac04b16417000137bf12d6e1d5 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ActivityPub.Builder do
   @moduledoc """
   This module builds the objects. Meant to be used for creating local objects.
index b9a83a5441c2634b8707f0c2c8eaad04b17f4e1a..2eec0ce86c4dfd7f2b1b10ded560e704d0f17906 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ActivityPub.SideEffects do
   @moduledoc """
   This module looks at an inserted object and executes the side effects that it
index 478a835187186f05d49b53885978402b11052fd5..ace44afd1bd99a1047178e1e342afdbd4000f508 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.Mailer.SubscriptionController do
   use Pleroma.Web, :controller
 
index 71c53df1d19f2768ea43a2ae5df15e9ead6f9697..7c03450940af4eecf2e1b99273c2c898ee02eb5a 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.PleromaAPI.EmojiFileController do
   use Pleroma.Web, :controller
 
index 6696f8b92ede162859608cad724db090d987f5b0..a0e5c739a21e19e20f7227a3b4e4fc9499a1b6a2 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.PleromaAPI.EmojiPackController do
   use Pleroma.Web, :controller
 
index c5aaea2d47849d8c8a6710b4730367a0717c2513..15109d28de39022892917ab2b1eec44a53b578fb 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.RichMedia.Parser.TTL.AwsSignedUrl do
   @behaviour Pleroma.Web.RichMedia.Parser.TTL
 
index 6b3ec6d30fc87832ad8232c1894e2e489c91e30d..13511888c23b5f856030eb3f7fb69e3cac7909ff 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.RichMedia.Parser.TTL do
   @callback ttl(Map.t(), String.t()) :: {:ok, Integer.t()} | {:error, String.t()}
 end
index 6b0fbe61ee2348a7f138a29cbbea1c340d919a0b..bcdee657164269f7833a4d60f52a76747887bf87 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.EmailView do
   use Pleroma.Web, :view
   import Phoenix.HTML
index fc3d20816546b4320c5ef837a4ca1cfb611fbf3c..4562a9d6c37cecb0b3cd7718375a73136ea797bc 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.Mailer.SubscriptionView do
   use Pleroma.Web, :view
 end
index 14a6e6b71e8d10f2a9c3048d45740eda0c434dfa..4ddcea1ec04f39a81b2598f3041379ad3d840da5 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Activity.Ir.TopicsTest do
   use Pleroma.DataCase
 
index f81a7b5807dd1dbd10ce729b35dc6342127851cd..02ada1aab117ba1d0f33656b836d2b9a8d541ada 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Config.DeprecationWarningsTest do
   use ExUnit.Case
   use Pleroma.Tests.Helpers
index b32918a69339dd166e3644f1bc11751c69256b90..43877244d28fe801e9c1c1b47295df31f96a2800 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Docs.GeneratorTest do
   use ExUnit.Case, async: true
   alias Pleroma.Docs.Generator
index fa8c7c7e85ef3ceefedc6d42f0c51d2f3ef340c2..621bc8cf67ab10e8dd5af9243b5f7b71fce383fb 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 use Mix.Config
 
 config :pleroma, :first_setting, key: "value", key2: [Pleroma.Repo]
index 7bc01b36b18a5b2dc32066504c5395ffb1268aea..41adb1e9621a7f060fc7bcbfb824d121eb9220cb 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.MFA.BackupCodesTest do
   use Pleroma.DataCase
 
index 50153d20840b10edcf4fe5342ed7e89b6a235d97..9edb6fd54d130c4dfc4236ac94d0cf9bd302c0e8 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.MFA.TOTPTest do
   use Pleroma.DataCase
 
index 250d11c61bbc74dc99d749cb88a03717afa7b32b..84f520fe4ea23270cd5c0e09b698e2050545db75 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Repo.Migrations.AutolinkerToLinkifyTest do
   use Pleroma.DataCase
   import Pleroma.Factory
index d3490478e0a62f24d13a63eadde5f80fd0ad0600..61528599a96b3311d39863e0282495f0b66f3850 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Repo.Migrations.FixMalformedFormatterConfigTest do
   use Pleroma.DataCase
   import Pleroma.Factory
index 739f2454776692f935ee0b71fc30243f18f5cf82..53d05a55aef4ef0834cc2225a815c06759ba6232 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Repo.Migrations.MoveWelcomeSettingsTest do
   use Pleroma.DataCase
   import Pleroma.Factory
index 3b4dee407bfd0a91d93c6e2337430f55e048eee7..432055e459e6b81b44b6c2048653a50ad3162b26 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Repo.Migrations.FixLegacyTagsTest do
   alias Pleroma.User
   use Pleroma.DataCase
index 7485405709196e448b7a3ad2ee4ec144a8b31533..8b12745452f318dd85e504e6cb8bcd98528701e9 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.SafeJsonbSetTest do
   use Pleroma.DataCase
 
index 0b444c86d8e9dd36469abe5f5ed5d6eb46cf4151..69dccb74591c6cb42dd35df84755507b2f355502 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.DigestTest do
   use Pleroma.DataCase
 
index 5393e3573d9f2bf1d3fbab1dbc414702210d57be..9523aefd884fa48e9479ac06da0eb1ec1b11e98a 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.EmailTest do
   use Pleroma.DataCase
 
index 499f098c2a558264c7bb1287283e28d34136ce88..0fb8603ac4b2890f67e995a9232b6cb5809b2167 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Mix.Tasks.Pleroma.EmojiTest do
   use ExUnit.Case, async: true
 
index e82c8afa6b62d8b371148299a34f47fe9d9b1f88..e8cdde2e1f82a91c7f7bb6b8ed053b838da44f86 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ActivityPub.MRFTest do
   use ExUnit.Case, async: true
   use Pleroma.Tests.Helpers
index 43be8e9368cb770ab5aab5b9848227eaca838b24..10310c801e1faa8e3de229f8e808dd0e31780a2d 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ActivityPub.ObjectValidators.Types.DateTimeTest do
   alias Pleroma.EctoType.ActivityPub.ObjectValidators.DateTime
   use Pleroma.DataCase
index 053916bdd5f573875a375917b9b3641c61edf958..c09265f0d367d4e99305e30622105e2b3b7e619f 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ObjectValidators.Types.RecipientsTest do
   alias Pleroma.EctoType.ActivityPub.ObjectValidators.Recipients
   use Pleroma.DataCase
index f18f3a212ea28d3a5e53aab2f9bfa2dd679ed33d..32170873de695f031c552c8005be850488752cad 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.ChatChannelTest do
   use Pleroma.Web.ChannelCase
   alias Pleroma.Web.ChatChannel
index 926ae74cab87a65a60019484634b82862e0b4af5..aa1435ac0994b2b05cfbc278d533db0d24f04514 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.MediaProxy.InvalidationTest do
   use ExUnit.Case
   use Pleroma.Tests.Helpers
index a1bef5237d731fcccc8da633db3f67a8935af403..13d0813256692f40ad817b21a4fa47d02fcb2263 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.MediaProxy.Invalidation.HttpTest do
   use ExUnit.Case
   alias Pleroma.Web.MediaProxy.Invalidation
index 51833ab18a0519aebbfc747eedbabb3540fb9afc..692cbb2df59e78466e7cf6d3928fc78038eb5a0e 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.MediaProxy.Invalidation.ScriptTest do
   use ExUnit.Case
   alias Pleroma.Web.MediaProxy.Invalidation
index d23d08a005ff60e1f88256c7e2472242e572769f..22988c88158349c0c95e5be460032e0acc58ae22 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.PleromaAPI.TwoFactorAuthenticationControllerTest do
   use Pleroma.Web.ConnCase
 
index 1598bf6752ed2f19e6214e7137462b2ec80893f0..f819a1e52d8d74082d8d327e0a887527cc081d06 100644 (file)
@@ -1,3 +1,7 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
 defmodule Pleroma.Web.StaticFE.StaticFEControllerTest do
   use Pleroma.Web.ConnCase