summaryrefslogtreecommitdiff
path: root/internal/federation/federatingdb
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-12-20 18:42:19 +0100
committerLibravatar GitHub <noreply@github.com>2021-12-20 18:42:19 +0100
commitef5a9256a8fc35e644cc48734f39c84a8957de86 (patch)
tree5cda77185465d46fb5e3cb12f9066f2506a58846 /internal/federation/federatingdb
parentRemove unnecessary storage config variables (#344) (diff)
downloadgotosocial-ef5a9256a8fc35e644cc48734f39c84a8957de86.tar.xz
Extend license notices to 2022 (#354)
Diffstat (limited to 'internal/federation/federatingdb')
-rw-r--r--internal/federation/federatingdb/accept.go2
-rw-r--r--internal/federation/federatingdb/announce.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_test.go2
-rw-r--r--internal/federation/federatingdb/get.go2
-rw-r--r--internal/federation/federatingdb/inbox.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
21 files changed, 21 insertions, 21 deletions
diff --git a/internal/federation/federatingdb/accept.go b/internal/federation/federatingdb/accept.go
index 34cdc4fb5..25dd2bce0 100644
--- a/internal/federation/federatingdb/accept.go
+++ b/internal/federation/federatingdb/accept.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 b506a9f78..61a85bbc6 100644
--- a/internal/federation/federatingdb/announce.go
+++ b/internal/federation/federatingdb/announce.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 d992c2bd7..b07f4f04f 100644
--- a/internal/federation/federatingdb/create.go
+++ b/internal/federation/federatingdb/create.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 ee2194f9e..3be19c45f 100644
--- a/internal/federation/federatingdb/create_test.go
+++ b/internal/federation/federatingdb/create_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 64e5ad359..5de7fa607 100644
--- a/internal/federation/federatingdb/db.go
+++ b/internal/federation/federatingdb/db.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 7d41d1b76..7293701aa 100644
--- a/internal/federation/federatingdb/delete.go
+++ b/internal/federation/federatingdb/delete.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 01c14a720..fe220fc71 100644
--- a/internal/federation/federatingdb/exists.go
+++ b/internal/federation/federatingdb/exists.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 71cc739c4..3f1af7d78 100644
--- a/internal/federation/federatingdb/federatingdb_test.go
+++ b/internal/federation/federatingdb/federatingdb_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 fbdf738a9..d6fdc0bd6 100644
--- a/internal/federation/federatingdb/followers_test.go
+++ b/internal/federation/federatingdb/followers_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 7c2727269..b01dbaf20 100644
--- a/internal/federation/federatingdb/following_test.go
+++ b/internal/federation/federatingdb/following_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 ac3920c78..9fdc08dd9 100644
--- a/internal/federation/federatingdb/get.go
+++ b/internal/federation/federatingdb/get.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 90a10a499..1f020d27e 100644
--- a/internal/federation/federatingdb/inbox.go
+++ b/internal/federation/federatingdb/inbox.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 2729c1223..4fa615c36 100644
--- a/internal/federation/federatingdb/liked.go
+++ b/internal/federation/federatingdb/liked.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 22be6c793..22f2bb77a 100644
--- a/internal/federation/federatingdb/lock.go
+++ b/internal/federation/federatingdb/lock.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 9d540e3a2..4c87d9203 100644
--- a/internal/federation/federatingdb/outbox.go
+++ b/internal/federation/federatingdb/outbox.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 15e3dea0a..bfb656a16 100644
--- a/internal/federation/federatingdb/owns.go
+++ b/internal/federation/federatingdb/owns.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 2ecdc829e..8df1b853a 100644
--- a/internal/federation/federatingdb/reject.go
+++ b/internal/federation/federatingdb/reject.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 700330c1f..825ff92b3 100644
--- a/internal/federation/federatingdb/reject_test.go
+++ b/internal/federation/federatingdb/reject_test.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 f2dcc72c5..94a0d74ce 100644
--- a/internal/federation/federatingdb/undo.go
+++ b/internal/federation/federatingdb/undo.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 e95e128cd..3a48eabac 100644
--- a/internal/federation/federatingdb/update.go
+++ b/internal/federation/federatingdb/update.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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 56512e0af..74262fea4 100644
--- a/internal/federation/federatingdb/util.go
+++ b/internal/federation/federatingdb/util.go
@@ -1,6 +1,6 @@
/*
GoToSocial
- Copyright (C) 2021 GoToSocial Authors admin@gotosocial.org
+ Copyright (C) 2021-2022 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