summaryrefslogtreecommitdiff
path: root/internal/federation
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2023-01-05 12:43:00 +0100
committerLibravatar GitHub <noreply@github.com>2023-01-05 12:43:00 +0100
commit0dbe6c514fb742b727694a6c8152fbd2a9caf035 (patch)
tree351cb411dd3aa71fb218fbe8495fe713fbfc91a2 /internal/federation
parent[chore] Fix emoji notnull constraint on initial gtsmodel (#1303) (diff)
downloadgotosocial-0dbe6c514fb742b727694a6c8152fbd2a9caf035.tar.xz
[chore] Update/add license headers for 2023 (#1304)
Diffstat (limited to 'internal/federation')
-rw-r--r--internal/federation/authenticate.go2
-rw-r--r--internal/federation/clock.go2
-rw-r--r--internal/federation/commonbehavior.go2
-rw-r--r--internal/federation/dereference.go2
-rw-r--r--internal/federation/dereferencing/account.go2
-rw-r--r--internal/federation/dereferencing/account_test.go2
-rw-r--r--internal/federation/dereferencing/announce.go2
-rw-r--r--internal/federation/dereferencing/collectionpage.go2
-rw-r--r--internal/federation/dereferencing/dereferencer.go2
-rw-r--r--internal/federation/dereferencing/dereferencer_test.go2
-rw-r--r--internal/federation/dereferencing/emoji.go2
-rw-r--r--internal/federation/dereferencing/emoji_test.go2
-rw-r--r--internal/federation/dereferencing/error.go2
-rw-r--r--internal/federation/dereferencing/finger.go2
-rw-r--r--internal/federation/dereferencing/handshake.go2
-rw-r--r--internal/federation/dereferencing/instance.go2
-rw-r--r--internal/federation/dereferencing/media.go2
-rw-r--r--internal/federation/dereferencing/media_test.go2
-rw-r--r--internal/federation/dereferencing/status.go2
-rw-r--r--internal/federation/dereferencing/status_test.go2
-rw-r--r--internal/federation/dereferencing/thread.go2
-rw-r--r--internal/federation/dereferencing/util.go2
-rw-r--r--internal/federation/federatingactor.go2
-rw-r--r--internal/federation/federatingactor_test.go2
-rw-r--r--internal/federation/federatingdb/accept.go2
-rw-r--r--internal/federation/federatingdb/announce.go2
-rw-r--r--internal/federation/federatingdb/announce_test.go2
-rw-r--r--internal/federation/federatingdb/create.go2
-rw-r--r--internal/federation/federatingdb/create_test.go2
-rw-r--r--internal/federation/federatingdb/db.go2
-rw-r--r--internal/federation/federatingdb/delete.go2
-rw-r--r--internal/federation/federatingdb/exists.go2
-rw-r--r--internal/federation/federatingdb/federatingdb_test.go2
-rw-r--r--internal/federation/federatingdb/followers_test.go2
-rw-r--r--internal/federation/federatingdb/following.go2
-rw-r--r--internal/federation/federatingdb/following_test.go2
-rw-r--r--internal/federation/federatingdb/get.go2
-rw-r--r--internal/federation/federatingdb/inbox.go2
-rw-r--r--internal/federation/federatingdb/inbox_test.go2
-rw-r--r--internal/federation/federatingdb/liked.go2
-rw-r--r--internal/federation/federatingdb/lock.go2
-rw-r--r--internal/federation/federatingdb/outbox.go2
-rw-r--r--internal/federation/federatingdb/owns.go2
-rw-r--r--internal/federation/federatingdb/reject.go2
-rw-r--r--internal/federation/federatingdb/reject_test.go2
-rw-r--r--internal/federation/federatingdb/undo.go2
-rw-r--r--internal/federation/federatingdb/update.go2
-rw-r--r--internal/federation/federatingdb/util.go2
-rw-r--r--internal/federation/federatingprotocol.go2
-rw-r--r--internal/federation/federatingprotocol_test.go2
-rw-r--r--internal/federation/federator.go2
-rw-r--r--internal/federation/federator_test.go2
-rw-r--r--internal/federation/handshake.go2
-rw-r--r--internal/federation/transport.go2
54 files changed, 54 insertions, 54 deletions
diff --git a/internal/federation/authenticate.go b/internal/federation/authenticate.go
index 00fcdfaa9..157a1830b 100644
--- a/internal/federation/authenticate.go
+++ b/internal/federation/authenticate.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/clock.go b/internal/federation/clock.go
index 042743235..970df1a27 100644
--- a/internal/federation/clock.go
+++ b/internal/federation/clock.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/commonbehavior.go b/internal/federation/commonbehavior.go
index b90b2b92d..378f2bbae 100644
--- a/internal/federation/commonbehavior.go
+++ b/internal/federation/commonbehavior.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereference.go b/internal/federation/dereference.go
index dcb4cc631..5acc038e9 100644
--- a/internal/federation/dereference.go
+++ b/internal/federation/dereference.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/account.go b/internal/federation/dereferencing/account.go
index dcaa08b51..4910273bd 100644
--- a/internal/federation/dereferencing/account.go
+++ b/internal/federation/dereferencing/account.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/account_test.go b/internal/federation/dereferencing/account_test.go
index c5541209f..eb795d169 100644
--- a/internal/federation/dereferencing/account_test.go
+++ b/internal/federation/dereferencing/account_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/announce.go b/internal/federation/dereferencing/announce.go
index 82c3afda2..8e374deb3 100644
--- a/internal/federation/dereferencing/announce.go
+++ b/internal/federation/dereferencing/announce.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/collectionpage.go b/internal/federation/dereferencing/collectionpage.go
index 5e6e19295..e0d947d45 100644
--- a/internal/federation/dereferencing/collectionpage.go
+++ b/internal/federation/dereferencing/collectionpage.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/dereferencer.go b/internal/federation/dereferencing/dereferencer.go
index a5503f359..23f91ecae 100644
--- a/internal/federation/dereferencing/dereferencer.go
+++ b/internal/federation/dereferencing/dereferencer.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/dereferencer_test.go b/internal/federation/dereferencing/dereferencer_test.go
index 345d94704..daca8b7de 100644
--- a/internal/federation/dereferencing/dereferencer_test.go
+++ b/internal/federation/dereferencing/dereferencer_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/emoji.go b/internal/federation/dereferencing/emoji.go
index 2ac7fc03d..4a44d716a 100644
--- a/internal/federation/dereferencing/emoji.go
+++ b/internal/federation/dereferencing/emoji.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/emoji_test.go b/internal/federation/dereferencing/emoji_test.go
index af3cb3318..698c8d6f2 100644
--- a/internal/federation/dereferencing/emoji_test.go
+++ b/internal/federation/dereferencing/emoji_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/error.go b/internal/federation/dereferencing/error.go
index 4e5d1cd22..48804b50d 100644
--- a/internal/federation/dereferencing/error.go
+++ b/internal/federation/dereferencing/error.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/finger.go b/internal/federation/dereferencing/finger.go
index 9613d2975..03eecf1bb 100644
--- a/internal/federation/dereferencing/finger.go
+++ b/internal/federation/dereferencing/finger.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/handshake.go b/internal/federation/dereferencing/handshake.go
index 87f2bfdd1..8533f3387 100644
--- a/internal/federation/dereferencing/handshake.go
+++ b/internal/federation/dereferencing/handshake.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/instance.go b/internal/federation/dereferencing/instance.go
index 65f523950..95f24f3da 100644
--- a/internal/federation/dereferencing/instance.go
+++ b/internal/federation/dereferencing/instance.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/media.go b/internal/federation/dereferencing/media.go
index afa184a98..84e6fe0d3 100644
--- a/internal/federation/dereferencing/media.go
+++ b/internal/federation/dereferencing/media.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/media_test.go b/internal/federation/dereferencing/media_test.go
index befd9f8be..a118b5bf4 100644
--- a/internal/federation/dereferencing/media_test.go
+++ b/internal/federation/dereferencing/media_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/status.go b/internal/federation/dereferencing/status.go
index a1783e838..8695c6f95 100644
--- a/internal/federation/dereferencing/status.go
+++ b/internal/federation/dereferencing/status.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/status_test.go b/internal/federation/dereferencing/status_test.go
index da6fe3be6..7b4d9788e 100644
--- a/internal/federation/dereferencing/status_test.go
+++ b/internal/federation/dereferencing/status_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/thread.go b/internal/federation/dereferencing/thread.go
index 15829c45a..e89b2da7a 100644
--- a/internal/federation/dereferencing/thread.go
+++ b/internal/federation/dereferencing/thread.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/dereferencing/util.go b/internal/federation/dereferencing/util.go
index 73bc1f29d..c2a1729be 100644
--- a/internal/federation/dereferencing/util.go
+++ b/internal/federation/dereferencing/util.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingactor.go b/internal/federation/federatingactor.go
index b80e9ff23..029149a9b 100644
--- a/internal/federation/federatingactor.go
+++ b/internal/federation/federatingactor.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingactor_test.go b/internal/federation/federatingactor_test.go
index 46a392d70..10ed60f68 100644
--- a/internal/federation/federatingactor_test.go
+++ b/internal/federation/federatingactor_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/accept.go b/internal/federation/federatingdb/accept.go
index 977cf2bba..f5cee2088 100644
--- a/internal/federation/federatingdb/accept.go
+++ b/internal/federation/federatingdb/accept.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/announce.go b/internal/federation/federatingdb/announce.go
index 47e873ca3..0768077ee 100644
--- a/internal/federation/federatingdb/announce.go
+++ b/internal/federation/federatingdb/announce.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/announce_test.go b/internal/federation/federatingdb/announce_test.go
index f63910298..6c0d969f4 100644
--- a/internal/federation/federatingdb/announce_test.go
+++ b/internal/federation/federatingdb/announce_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/create.go b/internal/federation/federatingdb/create.go
index 67f076ab3..05321bd6c 100644
--- a/internal/federation/federatingdb/create.go
+++ b/internal/federation/federatingdb/create.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/create_test.go b/internal/federation/federatingdb/create_test.go
index 399809e42..6bab42889 100644
--- a/internal/federation/federatingdb/create_test.go
+++ b/internal/federation/federatingdb/create_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/db.go b/internal/federation/federatingdb/db.go
index cbe65e922..0787cc7cf 100644
--- a/internal/federation/federatingdb/db.go
+++ b/internal/federation/federatingdb/db.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/delete.go b/internal/federation/federatingdb/delete.go
index 08f16fd5a..22434f63e 100644
--- a/internal/federation/federatingdb/delete.go
+++ b/internal/federation/federatingdb/delete.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/exists.go b/internal/federation/federatingdb/exists.go
index 65b2a55b3..51e7399aa 100644
--- a/internal/federation/federatingdb/exists.go
+++ b/internal/federation/federatingdb/exists.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/federatingdb_test.go b/internal/federation/federatingdb/federatingdb_test.go
index ded817c98..dd5a5f5f9 100644
--- a/internal/federation/federatingdb/federatingdb_test.go
+++ b/internal/federation/federatingdb/federatingdb_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/followers_test.go b/internal/federation/federatingdb/followers_test.go
index d6fdc0bd6..0937c5d0e 100644
--- a/internal/federation/federatingdb/followers_test.go
+++ b/internal/federation/federatingdb/followers_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/following.go b/internal/federation/federatingdb/following.go
index a244cf7ac..2290b72f4 100644
--- a/internal/federation/federatingdb/following.go
+++ b/internal/federation/federatingdb/following.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/following_test.go b/internal/federation/federatingdb/following_test.go
index b01dbaf20..824530686 100644
--- a/internal/federation/federatingdb/following_test.go
+++ b/internal/federation/federatingdb/following_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/get.go b/internal/federation/federatingdb/get.go
index 5467c886d..24f3ddb51 100644
--- a/internal/federation/federatingdb/get.go
+++ b/internal/federation/federatingdb/get.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/inbox.go b/internal/federation/federatingdb/inbox.go
index 18f620bce..5ec735bd4 100644
--- a/internal/federation/federatingdb/inbox.go
+++ b/internal/federation/federatingdb/inbox.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/inbox_test.go b/internal/federation/federatingdb/inbox_test.go
index f0ce38af6..aa9f82cc2 100644
--- a/internal/federation/federatingdb/inbox_test.go
+++ b/internal/federation/federatingdb/inbox_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/liked.go b/internal/federation/federatingdb/liked.go
index 4fa615c36..b57cb1adf 100644
--- a/internal/federation/federatingdb/liked.go
+++ b/internal/federation/federatingdb/liked.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/lock.go b/internal/federation/federatingdb/lock.go
index e3da99dd6..19fbce9c5 100644
--- a/internal/federation/federatingdb/lock.go
+++ b/internal/federation/federatingdb/lock.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/outbox.go b/internal/federation/federatingdb/outbox.go
index 4c87d9203..90ae32c4b 100644
--- a/internal/federation/federatingdb/outbox.go
+++ b/internal/federation/federatingdb/outbox.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/owns.go b/internal/federation/federatingdb/owns.go
index c82dd847c..070036df7 100644
--- a/internal/federation/federatingdb/owns.go
+++ b/internal/federation/federatingdb/owns.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/reject.go b/internal/federation/federatingdb/reject.go
index b77c3ce3a..7dbd4fda6 100644
--- a/internal/federation/federatingdb/reject.go
+++ b/internal/federation/federatingdb/reject.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/reject_test.go b/internal/federation/federatingdb/reject_test.go
index 52730925d..b1ace7784 100644
--- a/internal/federation/federatingdb/reject_test.go
+++ b/internal/federation/federatingdb/reject_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/undo.go b/internal/federation/federatingdb/undo.go
index 792297683..913befe93 100644
--- a/internal/federation/federatingdb/undo.go
+++ b/internal/federation/federatingdb/undo.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/update.go b/internal/federation/federatingdb/update.go
index f3a04cbcc..d84bce668 100644
--- a/internal/federation/federatingdb/update.go
+++ b/internal/federation/federatingdb/update.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingdb/util.go b/internal/federation/federatingdb/util.go
index 63f63abe7..a1efad3f0 100644
--- a/internal/federation/federatingdb/util.go
+++ b/internal/federation/federatingdb/util.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingprotocol.go b/internal/federation/federatingprotocol.go
index e7a897c83..a63aecc66 100644
--- a/internal/federation/federatingprotocol.go
+++ b/internal/federation/federatingprotocol.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federatingprotocol_test.go b/internal/federation/federatingprotocol_test.go
index 69ce1a6c0..faa168a71 100644
--- a/internal/federation/federatingprotocol_test.go
+++ b/internal/federation/federatingprotocol_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federator.go b/internal/federation/federator.go
index bf847db0a..0ba370cc4 100644
--- a/internal/federation/federator.go
+++ b/internal/federation/federator.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/federator_test.go b/internal/federation/federator_test.go
index 1b4e00182..da6038ace 100644
--- a/internal/federation/federator_test.go
+++ b/internal/federation/federator_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/handshake.go b/internal/federation/handshake.go
index de5c207f4..9669e9856 100644
--- a/internal/federation/handshake.go
+++ b/internal/federation/handshake.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by
diff --git a/internal/federation/transport.go b/internal/federation/transport.go
index bf8e32bed..a179125af 100644
--- a/internal/federation/transport.go
+++ b/internal/federation/transport.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021-2022 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2023 GoToSocial Authors admin@gotosocial.org
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published by