summaryrefslogtreecommitdiff
path: root/testrig
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 /testrig
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 'testrig')
-rw-r--r--testrig/config.go2
-rw-r--r--testrig/db.go2
-rw-r--r--testrig/email.go2
-rw-r--r--testrig/federatingdb.go18
-rw-r--r--testrig/federator.go2
-rw-r--r--testrig/gin.go2
-rw-r--r--testrig/log.go2
-rw-r--r--testrig/mediahandler.go2
-rw-r--r--testrig/oauthserver.go2
-rw-r--r--testrig/processor.go2
-rw-r--r--testrig/router.go2
-rw-r--r--testrig/storage.go2
-rw-r--r--testrig/testmodels.go2
-rw-r--r--testrig/transportcontroller.go2
-rw-r--r--testrig/typeconverter.go2
-rw-r--r--testrig/util.go2
16 files changed, 33 insertions, 15 deletions
diff --git a/testrig/config.go b/testrig/config.go
index d815f36fa..fff9f8fd3 100644
--- a/testrig/config.go
+++ b/testrig/config.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/testrig/db.go b/testrig/db.go
index 3e34344bc..ed9c1b916 100644
--- a/testrig/db.go
+++ b/testrig/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/testrig/email.go b/testrig/email.go
index eb1ac4e06..535d0b15a 100644
--- a/testrig/email.go
+++ b/testrig/email.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/testrig/federatingdb.go b/testrig/federatingdb.go
index 468cfbfd1..f9d47979a 100644
--- a/testrig/federatingdb.go
+++ b/testrig/federatingdb.go
@@ -1,3 +1,21 @@
+/*
+ GoToSocial
+ 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
+ the Free Software Foundation, either version 3 of the License, or
+ (at your option) any later version.
+
+ This program is distributed in the hope that it will be useful,
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ GNU Affero General Public License for more details.
+
+ You should have received a copy of the GNU Affero General Public License
+ along with this program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
package testrig
import (
diff --git a/testrig/federator.go b/testrig/federator.go
index 519f9ad62..605a2c8f3 100644
--- a/testrig/federator.go
+++ b/testrig/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/testrig/gin.go b/testrig/gin.go
index 853dfdd06..0a5e1c2e3 100644
--- a/testrig/gin.go
+++ b/testrig/gin.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/testrig/log.go b/testrig/log.go
index 48e335297..2d7911484 100644
--- a/testrig/log.go
+++ b/testrig/log.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/testrig/mediahandler.go b/testrig/mediahandler.go
index 12bfb8679..cb87b598e 100644
--- a/testrig/mediahandler.go
+++ b/testrig/mediahandler.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/testrig/oauthserver.go b/testrig/oauthserver.go
index 1325b5df8..c257ec56b 100644
--- a/testrig/oauthserver.go
+++ b/testrig/oauthserver.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/testrig/processor.go b/testrig/processor.go
index 9dea6f579..f86e5c4c7 100644
--- a/testrig/processor.go
+++ b/testrig/processor.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/testrig/router.go b/testrig/router.go
index ce849423d..cc9345a84 100644
--- a/testrig/router.go
+++ b/testrig/router.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/testrig/storage.go b/testrig/storage.go
index 7d3f3be71..2c44260fb 100644
--- a/testrig/storage.go
+++ b/testrig/storage.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/testrig/testmodels.go b/testrig/testmodels.go
index 01676d517..6845abdb9 100644
--- a/testrig/testmodels.go
+++ b/testrig/testmodels.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/testrig/transportcontroller.go b/testrig/transportcontroller.go
index 6296d4420..c7344e678 100644
--- a/testrig/transportcontroller.go
+++ b/testrig/transportcontroller.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/testrig/typeconverter.go b/testrig/typeconverter.go
index 2da59dcd3..96c45d8c5 100644
--- a/testrig/typeconverter.go
+++ b/testrig/typeconverter.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/testrig/util.go b/testrig/util.go
index 7bc66987d..cc392b315 100644
--- a/testrig/util.go
+++ b/testrig/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