Browse Source

Add missing Copyright headers

1668/default-disable-prometheus
Mark Felder 3 years ago
parent
commit
8539e386c3
53 changed files with 212 additions and 0 deletions
  1. +4
    -0
      lib/mix/tasks/pleroma/count_statuses.ex
  2. +4
    -0
      lib/mix/tasks/pleroma/digest.ex
  3. +4
    -0
      lib/mix/tasks/pleroma/docs.ex
  4. +4
    -0
      lib/mix/tasks/pleroma/email.ex
  5. +4
    -0
      lib/mix/tasks/pleroma/notification_settings.ex
  6. +4
    -0
      lib/pleroma/config/oban.ex
  7. +4
    -0
      lib/pleroma/docs/generator.ex
  8. +4
    -0
      lib/pleroma/docs/json.ex
  9. +4
    -0
      lib/pleroma/docs/markdown.ex
  10. +4
    -0
      lib/pleroma/emoji/pack.ex
  11. +4
    -0
      lib/pleroma/gun/connection_pool.ex
  12. +4
    -0
      lib/pleroma/gun/connection_pool/reclaimer.ex
  13. +4
    -0
      lib/pleroma/gun/connection_pool/worker.ex
  14. +4
    -0
      lib/pleroma/gun/connection_pool/worker_supervisor.ex
  15. +4
    -0
      lib/pleroma/http/adapter_helper/default.ex
  16. +4
    -0
      lib/pleroma/http/adapter_helper/hackney.ex
  17. +4
    -0
      lib/pleroma/jwt.ex
  18. +4
    -0
      lib/pleroma/moderation_log.ex
  19. +4
    -0
      lib/pleroma/plugs/rate_limiter/limiter_supervisor.ex
  20. +4
    -0
      lib/pleroma/plugs/rate_limiter/supervisor.ex
  21. +4
    -0
      lib/pleroma/telemetry/logger.ex
  22. +4
    -0
      lib/pleroma/web/activity_pub/builder.ex
  23. +4
    -0
      lib/pleroma/web/activity_pub/side_effects.ex
  24. +4
    -0
      lib/pleroma/web/mailer/subscription_controller.ex
  25. +4
    -0
      lib/pleroma/web/pleroma_api/controllers/emoji_file_controller.ex
  26. +4
    -0
      lib/pleroma/web/pleroma_api/controllers/emoji_pack_controller.ex
  27. +4
    -0
      lib/pleroma/web/rich_media/parsers/ttl/aws_signed_url.ex
  28. +4
    -0
      lib/pleroma/web/rich_media/parsers/ttl/ttl.ex
  29. +4
    -0
      lib/pleroma/web/views/email_view.ex
  30. +4
    -0
      lib/pleroma/web/views/mailer/subscription_view.ex
  31. +4
    -0
      test/activity/ir/topics_test.exs
  32. +4
    -0
      test/config/deprecation_warnings_test.exs
  33. +4
    -0
      test/docs/generator_test.exs
  34. +4
    -0
      test/fixtures/config/temp.secret.exs
  35. +4
    -0
      test/mfa/backup_codes_test.exs
  36. +4
    -0
      test/mfa/totp_test.exs
  37. +4
    -0
      test/migrations/20200716195806_autolinker_to_linkify_test.exs
  38. +4
    -0
      test/migrations/20200722185515_fix_malformed_formatter_config_test.exs
  39. +4
    -0
      test/migrations/20200724133313_move_welcome_settings_test.exs
  40. +4
    -0
      test/migrations/20200802170532_fix_legacy_tags_test.exs
  41. +4
    -0
      test/safe_jsonb_set_test.exs
  42. +4
    -0
      test/tasks/digest_test.exs
  43. +4
    -0
      test/tasks/email_test.exs
  44. +4
    -0
      test/tasks/emoji_test.exs
  45. +4
    -0
      test/web/activity_pub/mrf/mrf_test.exs
  46. +4
    -0
      test/web/activity_pub/object_validators/types/date_time_test.exs
  47. +4
    -0
      test/web/activity_pub/object_validators/types/recipients_test.exs
  48. +4
    -0
      test/web/chat_channel_test.exs
  49. +4
    -0
      test/web/media_proxy/invalidation_test.exs
  50. +4
    -0
      test/web/media_proxy/invalidations/http_test.exs
  51. +4
    -0
      test/web/media_proxy/invalidations/script_test.exs
  52. +4
    -0
      test/web/pleroma_api/controllers/two_factor_authentication_controller_test.exs
  53. +4
    -0
      test/web/static_fe/static_fe_controller_test.exs

+ 4
- 0
lib/mix/tasks/pleroma/count_statuses.ex View 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"



+ 4
- 0
lib/mix/tasks/pleroma/digest.ex View 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


+ 4
- 0
lib/mix/tasks/pleroma/docs.ex View 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


+ 4
- 0
lib/mix/tasks/pleroma/email.ex View 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


+ 4
- 0
lib/mix/tasks/pleroma/notification_settings.ex View 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 """


+ 4
- 0
lib/pleroma/config/oban.ex View 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



+ 4
- 0
lib/pleroma/docs/generator.ex View 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()}



+ 4
- 0
lib/pleroma/docs/json.ex View 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"


+ 4
- 0
lib/pleroma/docs/markdown.ex View 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



+ 4
- 0
lib/pleroma/emoji/pack.ex View 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: %{},


+ 4
- 0
lib/pleroma/gun/connection_pool.ex View 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__



+ 4
- 0
lib/pleroma/gun/connection_pool/reclaimer.ex View 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



+ 4
- 0
lib/pleroma/gun/connection_pool/worker.ex View 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


+ 4
- 0
lib/pleroma/gun/connection_pool/worker_supervisor.ex View 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"



+ 4
- 0
lib/pleroma/http/adapter_helper/default.ex View 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



+ 4
- 0
lib/pleroma/http/adapter_helper/hackney.ex View 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



+ 4
- 0
lib/pleroma/jwt.ex View 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



+ 4
- 0
lib/pleroma/moderation_log.ex View 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



+ 4
- 0
lib/pleroma/plugs/rate_limiter/limiter_supervisor.ex View 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



+ 4
- 0
lib/pleroma/plugs/rate_limiter/supervisor.ex View 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



+ 4
- 0
lib/pleroma/telemetry/logger.ex View 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"



+ 4
- 0
lib/pleroma/web/activity_pub/builder.ex View 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.


+ 4
- 0
lib/pleroma/web/activity_pub/side_effects.ex View 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


+ 4
- 0
lib/pleroma/web/mailer/subscription_controller.ex View 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



+ 4
- 0
lib/pleroma/web/pleroma_api/controllers/emoji_file_controller.ex View 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



+ 4
- 0
lib/pleroma/web/pleroma_api/controllers/emoji_pack_controller.ex View 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



+ 4
- 0
lib/pleroma/web/rich_media/parsers/ttl/aws_signed_url.ex View 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



+ 4
- 0
lib/pleroma/web/rich_media/parsers/ttl/ttl.ex View 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

+ 4
- 0
lib/pleroma/web/views/email_view.ex View 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


+ 4
- 0
lib/pleroma/web/views/mailer/subscription_view.ex View 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

+ 4
- 0
test/activity/ir/topics_test.exs View 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



+ 4
- 0
test/config/deprecation_warnings_test.exs View 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


+ 4
- 0
test/docs/generator_test.exs View 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


+ 4
- 0
test/fixtures/config/temp.secret.exs View 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]


+ 4
- 0
test/mfa/backup_codes_test.exs View 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



+ 4
- 0
test/mfa/totp_test.exs View 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



+ 4
- 0
test/migrations/20200716195806_autolinker_to_linkify_test.exs View 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


+ 4
- 0
test/migrations/20200722185515_fix_malformed_formatter_config_test.exs View 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


+ 4
- 0
test/migrations/20200724133313_move_welcome_settings_test.exs View 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


+ 4
- 0
test/migrations/20200802170532_fix_legacy_tags_test.exs View 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


+ 4
- 0
test/safe_jsonb_set_test.exs View 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



+ 4
- 0
test/tasks/digest_test.exs View 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



+ 4
- 0
test/tasks/email_test.exs View 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



+ 4
- 0
test/tasks/emoji_test.exs View 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



+ 4
- 0
test/web/activity_pub/mrf/mrf_test.exs View 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


+ 4
- 0
test/web/activity_pub/object_validators/types/date_time_test.exs View 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


+ 4
- 0
test/web/activity_pub/object_validators/types/recipients_test.exs View 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


+ 4
- 0
test/web/chat_channel_test.exs View 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


+ 4
- 0
test/web/media_proxy/invalidation_test.exs View 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


+ 4
- 0
test/web/media_proxy/invalidations/http_test.exs View 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


+ 4
- 0
test/web/media_proxy/invalidations/script_test.exs View 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


+ 4
- 0
test/web/pleroma_api/controllers/two_factor_authentication_controller_test.exs View 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



+ 4
- 0
test/web/static_fe/static_fe_controller_test.exs View 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



Loading…
Cancel
Save