diff options
author | 2023-01-05 12:43:00 +0100 | |
---|---|---|
committer | 2023-01-05 12:43:00 +0100 | |
commit | 0dbe6c514fb742b727694a6c8152fbd2a9caf035 (patch) | |
tree | 351cb411dd3aa71fb218fbe8495fe713fbfc91a2 /internal/middleware | |
parent | [chore] Fix emoji notnull constraint on initial gtsmodel (#1303) (diff) | |
download | gotosocial-0dbe6c514fb742b727694a6c8152fbd2a9caf035.tar.xz |
[chore] Update/add license headers for 2023 (#1304)
Diffstat (limited to 'internal/middleware')
-rw-r--r-- | internal/middleware/cachecontrol.go | 2 | ||||
-rw-r--r-- | internal/middleware/cors.go | 2 | ||||
-rw-r--r-- | internal/middleware/extraheaders.go | 2 | ||||
-rw-r--r-- | internal/middleware/gzip.go | 2 | ||||
-rw-r--r-- | internal/middleware/logger.go | 2 | ||||
-rw-r--r-- | internal/middleware/ratelimit.go | 2 | ||||
-rw-r--r-- | internal/middleware/session.go | 2 | ||||
-rw-r--r-- | internal/middleware/session_test.go | 2 | ||||
-rw-r--r-- | internal/middleware/throttling.go | 2 | ||||
-rw-r--r-- | internal/middleware/tokencheck.go | 2 | ||||
-rw-r--r-- | internal/middleware/useragent.go | 2 |
11 files changed, 11 insertions, 11 deletions
diff --git a/internal/middleware/cachecontrol.go b/internal/middleware/cachecontrol.go index 6e88daf1a..0b08f14c9 100644 --- a/internal/middleware/cachecontrol.go +++ b/internal/middleware/cachecontrol.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/middleware/cors.go b/internal/middleware/cors.go index 79b72185f..f24c8584c 100644 --- a/internal/middleware/cors.go +++ b/internal/middleware/cors.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/middleware/extraheaders.go b/internal/middleware/extraheaders.go index c7d4dd3e2..53d0934dc 100644 --- a/internal/middleware/extraheaders.go +++ b/internal/middleware/extraheaders.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/middleware/gzip.go b/internal/middleware/gzip.go index 4523b4ea3..4a4415a6a 100644 --- a/internal/middleware/gzip.go +++ b/internal/middleware/gzip.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/middleware/logger.go b/internal/middleware/logger.go index 7474b0fe0..6fd7ce2c8 100644 --- a/internal/middleware/logger.go +++ b/internal/middleware/logger.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/middleware/ratelimit.go b/internal/middleware/ratelimit.go index 48f15eae5..164d0311d 100644 --- a/internal/middleware/ratelimit.go +++ b/internal/middleware/ratelimit.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/middleware/session.go b/internal/middleware/session.go index bffbdcd92..e13d9bea3 100644 --- a/internal/middleware/session.go +++ b/internal/middleware/session.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/middleware/session_test.go b/internal/middleware/session_test.go index d11d8c202..1184c0a12 100644 --- a/internal/middleware/session_test.go +++ b/internal/middleware/session_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/middleware/throttling.go b/internal/middleware/throttling.go index 0f98387dd..e7ad321f4 100644 --- a/internal/middleware/throttling.go +++ b/internal/middleware/throttling.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/middleware/tokencheck.go b/internal/middleware/tokencheck.go index ca93f379a..8d2af2cbd 100644 --- a/internal/middleware/tokencheck.go +++ b/internal/middleware/tokencheck.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/middleware/useragent.go b/internal/middleware/useragent.go index e55a19434..88bca83f4 100644 --- a/internal/middleware/useragent.go +++ b/internal/middleware/useragent.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 |