diff --git a/go.mod b/go.mod index b1a8ffc57..2b3043919 100644 --- a/go.mod +++ b/go.mod @@ -59,6 +59,7 @@ require ( github.com/onsi/gomega v1.4.3 // indirect github.com/op/go-logging v0.0.0-20160315200505-970db520ece7 github.com/pelletier/go-toml v1.4.0 // indirect + github.com/pkg/errors v0.8.1 // indirect github.com/prometheus/client_golang v0.9.2 github.com/samedi/caldav-go v3.0.0+incompatible github.com/shurcooL/httpfs v0.0.0-20190527155220-6a4d4a70508b diff --git a/main.go b/main.go index faade0167..407f3b9ac 100644 --- a/main.go +++ b/main.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/caldav/caldav.go b/pkg/caldav/caldav.go index 159346e97..d988407ed 100644 --- a/pkg/caldav/caldav.go +++ b/pkg/caldav/caldav.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/caldav/caldav_test.go b/pkg/caldav/caldav_test.go index 4934ec22b..573c7ee79 100644 --- a/pkg/caldav/caldav_test.go +++ b/pkg/caldav/caldav_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/cmd/cmd.go b/pkg/cmd/cmd.go index f5b0b07bb..0e791fa1d 100644 --- a/pkg/cmd/cmd.go +++ b/pkg/cmd/cmd.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/cmd/migrate.go b/pkg/cmd/migrate.go index 3079ebf65..a3c768f57 100644 --- a/pkg/cmd/migrate.go +++ b/pkg/cmd/migrate.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/cmd/version.go b/pkg/cmd/version.go index 35c21b8ea..5521e0575 100644 --- a/pkg/cmd/version.go +++ b/pkg/cmd/version.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/cmd/web.go b/pkg/cmd/web.go index ef9f3b0ef..2296ad37b 100644 --- a/pkg/cmd/web.go +++ b/pkg/cmd/web.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/config/config.go b/pkg/config/config.go index bd6db5cbc..1016e52cc 100644 --- a/pkg/config/config.go +++ b/pkg/config/config.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/db/db.go b/pkg/db/db.go index ce2e719e4..b65dc6809 100644 --- a/pkg/db/db.go +++ b/pkg/db/db.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/db/test_fixtures.go b/pkg/db/test_fixtures.go index 8cb992f6f..3ad9708b4 100644 --- a/pkg/db/test_fixtures.go +++ b/pkg/db/test_fixtures.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/files/db.go b/pkg/files/db.go index 2e1d58a00..19eebc6e0 100644 --- a/pkg/files/db.go +++ b/pkg/files/db.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/files/error.go b/pkg/files/error.go index 5f987594b..b01cb6e35 100644 --- a/pkg/files/error.go +++ b/pkg/files/error.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/files/filehandling.go b/pkg/files/filehandling.go index 0274b632f..53c12e9e8 100644 --- a/pkg/files/filehandling.go +++ b/pkg/files/filehandling.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/files/files.go b/pkg/files/files.go index 98e3a70a9..540eab11d 100644 --- a/pkg/files/files.go +++ b/pkg/files/files.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/files/files_test.go b/pkg/files/files_test.go index b1f56cefb..53e272700 100644 --- a/pkg/files/files_test.go +++ b/pkg/files/files_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/files/main_test.go b/pkg/files/main_test.go index 31505a2e0..078a7b648 100644 --- a/pkg/files/main_test.go +++ b/pkg/files/main_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/integrations/integrations.go b/pkg/integrations/integrations.go index 2c112f234..40bf50279 100644 --- a/pkg/integrations/integrations.go +++ b/pkg/integrations/integrations.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/link_sharing_test.go b/pkg/integrations/link_sharing_test.go index 8978055fd..c99c114c1 100644 --- a/pkg/integrations/link_sharing_test.go +++ b/pkg/integrations/link_sharing_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/list_test.go b/pkg/integrations/list_test.go index 2bcea5ddd..ee1a294ad 100644 --- a/pkg/integrations/list_test.go +++ b/pkg/integrations/list_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/login_test.go b/pkg/integrations/login_test.go index bd8c2da37..546e0270c 100644 --- a/pkg/integrations/login_test.go +++ b/pkg/integrations/login_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/register_test.go b/pkg/integrations/register_test.go index 9a21a8e4a..34b28de03 100644 --- a/pkg/integrations/register_test.go +++ b/pkg/integrations/register_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/task_collection_test.go b/pkg/integrations/task_collection_test.go index 0acfc73e0..374d693af 100644 --- a/pkg/integrations/task_collection_test.go +++ b/pkg/integrations/task_collection_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/integrations/task_test.go b/pkg/integrations/task_test.go index 353d43b36..01b3c9f38 100644 --- a/pkg/integrations/task_test.go +++ b/pkg/integrations/task_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/token_test.go b/pkg/integrations/token_test.go index f684019ac..f9a56580a 100644 --- a/pkg/integrations/token_test.go +++ b/pkg/integrations/token_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_change_password_test.go b/pkg/integrations/user_change_password_test.go index 01495a2d4..5d639e29e 100644 --- a/pkg/integrations/user_change_password_test.go +++ b/pkg/integrations/user_change_password_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_confirm_email_test.go b/pkg/integrations/user_confirm_email_test.go index c63d59b31..9e439af2d 100644 --- a/pkg/integrations/user_confirm_email_test.go +++ b/pkg/integrations/user_confirm_email_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_list_test.go b/pkg/integrations/user_list_test.go index 46bf81505..5ed0c8772 100644 --- a/pkg/integrations/user_list_test.go +++ b/pkg/integrations/user_list_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_password_request_token_test.go b/pkg/integrations/user_password_request_token_test.go index f976b5b9a..e171d7b8b 100644 --- a/pkg/integrations/user_password_request_token_test.go +++ b/pkg/integrations/user_password_request_token_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_password_reset_test.go b/pkg/integrations/user_password_reset_test.go index 31bb64021..50e09c899 100644 --- a/pkg/integrations/user_password_reset_test.go +++ b/pkg/integrations/user_password_reset_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/integrations/user_show_test.go b/pkg/integrations/user_show_test.go index c328ed960..1448285fc 100644 --- a/pkg/integrations/user_show_test.go +++ b/pkg/integrations/user_show_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/log/logging.go b/pkg/log/logging.go index c995b8fa0..22bc2629b 100644 --- a/pkg/log/logging.go +++ b/pkg/log/logging.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/mail/mail.go b/pkg/mail/mail.go index 0e17d7c94..ae1c5ea79 100644 --- a/pkg/mail/mail.go +++ b/pkg/mail/mail.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/mail/send_mail.go b/pkg/mail/send_mail.go index 6de3f5d67..78e353a62 100644 --- a/pkg/mail/send_mail.go +++ b/pkg/mail/send_mail.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/metrics/active_users.go b/pkg/metrics/active_users.go index cb6b935f4..f198fbb69 100644 --- a/pkg/metrics/active_users.go +++ b/pkg/metrics/active_users.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/metrics/metrics.go b/pkg/metrics/metrics.go index e6680ea71..efd33fec9 100644 --- a/pkg/metrics/metrics.go +++ b/pkg/metrics/metrics.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190324205606.go b/pkg/migration/20190324205606.go index 1da9ddf21..40a3972bb 100644 --- a/pkg/migration/20190324205606.go +++ b/pkg/migration/20190324205606.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190328074430.go b/pkg/migration/20190328074430.go index 9ada62bcc..3a05ecd04 100644 --- a/pkg/migration/20190328074430.go +++ b/pkg/migration/20190328074430.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190430111111.go b/pkg/migration/20190430111111.go index 0632e348f..88acb54ac 100644 --- a/pkg/migration/20190430111111.go +++ b/pkg/migration/20190430111111.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190511202210.go b/pkg/migration/20190511202210.go index aaaa04350..edca9aad0 100644 --- a/pkg/migration/20190511202210.go +++ b/pkg/migration/20190511202210.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190514192749.go b/pkg/migration/20190514192749.go index 0ea5b12f6..8eb0590f3 100644 --- a/pkg/migration/20190514192749.go +++ b/pkg/migration/20190514192749.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190524205441.go b/pkg/migration/20190524205441.go index 04eb6a875..dbed68745 100644 --- a/pkg/migration/20190524205441.go +++ b/pkg/migration/20190524205441.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190718200716.go b/pkg/migration/20190718200716.go index 5dc8fc82f..323c5a44f 100644 --- a/pkg/migration/20190718200716.go +++ b/pkg/migration/20190718200716.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20190818210133.go b/pkg/migration/20190818210133.go index 87c8f52af..833c91e14 100644 --- a/pkg/migration/20190818210133.go +++ b/pkg/migration/20190818210133.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/20190920185205.go b/pkg/migration/20190920185205.go index 7629282b4..24d310608 100644 --- a/pkg/migration/20190920185205.go +++ b/pkg/migration/20190920185205.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/20190922205826.go b/pkg/migration/20190922205826.go index 46e93d765..b2a692eb4 100644 --- a/pkg/migration/20190922205826.go +++ b/pkg/migration/20190922205826.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/20191008194238.go b/pkg/migration/20191008194238.go index 14e4c25a7..65c1f6795 100644 --- a/pkg/migration/20191008194238.go +++ b/pkg/migration/20191008194238.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/migration/20191010131430.go b/pkg/migration/20191010131430.go index d2e278210..dd45298c5 100644 --- a/pkg/migration/20191010131430.go +++ b/pkg/migration/20191010131430.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/20191207204427.go b/pkg/migration/20191207204427.go index 7fbad8316..c8d524455 100644 --- a/pkg/migration/20191207204427.go +++ b/pkg/migration/20191207204427.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/20191207220736.go b/pkg/migration/20191207220736.go index 88e7be455..e3947d90c 100644 --- a/pkg/migration/20191207220736.go +++ b/pkg/migration/20191207220736.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/migration/migration.go b/pkg/migration/migration.go index a862607f7..0d7bbfeb0 100644 --- a/pkg/migration/migration.go +++ b/pkg/migration/migration.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/bulk_task.go b/pkg/models/bulk_task.go index d71452f9c..5ebb8e67b 100644 --- a/pkg/models/bulk_task.go +++ b/pkg/models/bulk_task.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/error.go b/pkg/models/error.go index 9824fe2b8..0aa69d391 100644 --- a/pkg/models/error.go +++ b/pkg/models/error.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All web.Rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/label.go b/pkg/models/label.go index 14cab1097..9f226bafc 100644 --- a/pkg/models/label.go +++ b/pkg/models/label.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/label_rights.go b/pkg/models/label_rights.go index fb6105578..c7c6fe6fe 100644 --- a/pkg/models/label_rights.go +++ b/pkg/models/label_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/label_task.go b/pkg/models/label_task.go index 8daf43814..bb2f57f20 100644 --- a/pkg/models/label_task.go +++ b/pkg/models/label_task.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/label_task_rights.go b/pkg/models/label_task_rights.go index de153329d..7031a39b8 100644 --- a/pkg/models/label_task_rights.go +++ b/pkg/models/label_task_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/label_test.go b/pkg/models/label_test.go index 533d3e276..96c2b61ee 100644 --- a/pkg/models/label_test.go +++ b/pkg/models/label_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/link_sharing.go b/pkg/models/link_sharing.go index 51251f97f..9012eee8c 100644 --- a/pkg/models/link_sharing.go +++ b/pkg/models/link_sharing.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/link_sharing_rights.go b/pkg/models/link_sharing_rights.go index 1123eb2ff..577d60ff1 100644 --- a/pkg/models/link_sharing_rights.go +++ b/pkg/models/link_sharing_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list.go b/pkg/models/list.go index 53bde652a..0f3a47265 100644 --- a/pkg/models/list.go +++ b/pkg/models/list.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_rights.go b/pkg/models/list_rights.go index d1d208f3f..0a5eef8dd 100644 --- a/pkg/models/list_rights.go +++ b/pkg/models/list_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_team.go b/pkg/models/list_team.go index 279e83279..04b128a62 100644 --- a/pkg/models/list_team.go +++ b/pkg/models/list_team.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_team_rights.go b/pkg/models/list_team_rights.go index ee3de6f27..b29984026 100644 --- a/pkg/models/list_team_rights.go +++ b/pkg/models/list_team_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_team_test.go b/pkg/models/list_team_test.go index dbe5f6d37..b6e9c68ba 100644 --- a/pkg/models/list_team_test.go +++ b/pkg/models/list_team_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_test.go b/pkg/models/list_test.go index 41baa2400..7431b5ed1 100644 --- a/pkg/models/list_test.go +++ b/pkg/models/list_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_users.go b/pkg/models/list_users.go index 46269b6b0..f2b5a7472 100644 --- a/pkg/models/list_users.go +++ b/pkg/models/list_users.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_users_rights.go b/pkg/models/list_users_rights.go index 4279c0d5f..d48d60f4f 100644 --- a/pkg/models/list_users_rights.go +++ b/pkg/models/list_users_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_users_rights_test.go b/pkg/models/list_users_rights_test.go index b44cf5e14..1fac26357 100644 --- a/pkg/models/list_users_rights_test.go +++ b/pkg/models/list_users_rights_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/list_users_test.go b/pkg/models/list_users_test.go index de2cff05a..07daafafc 100644 --- a/pkg/models/list_users_test.go +++ b/pkg/models/list_users_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/main_test.go b/pkg/models/main_test.go index 04e1b44c7..7c1911aa5 100644 --- a/pkg/models/main_test.go +++ b/pkg/models/main_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/message.go b/pkg/models/message.go index 86a49d407..3c764e7bf 100644 --- a/pkg/models/message.go +++ b/pkg/models/message.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/models.go b/pkg/models/models.go index 1572b5d11..33275901d 100644 --- a/pkg/models/models.go +++ b/pkg/models/models.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace.go b/pkg/models/namespace.go index a5c52a557..5da41cf81 100644 --- a/pkg/models/namespace.go +++ b/pkg/models/namespace.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_rights.go b/pkg/models/namespace_rights.go index 2868e9db6..6ff4c7772 100644 --- a/pkg/models/namespace_rights.go +++ b/pkg/models/namespace_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_team.go b/pkg/models/namespace_team.go index e572fc436..6c58c4a15 100644 --- a/pkg/models/namespace_team.go +++ b/pkg/models/namespace_team.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_team_rights.go b/pkg/models/namespace_team_rights.go index 4dc0bfa10..3f7d2f533 100644 --- a/pkg/models/namespace_team_rights.go +++ b/pkg/models/namespace_team_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_team_rights_test.go b/pkg/models/namespace_team_rights_test.go index 3f38f5832..09b3d7830 100644 --- a/pkg/models/namespace_team_rights_test.go +++ b/pkg/models/namespace_team_rights_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_team_test.go b/pkg/models/namespace_team_test.go index 05c503b50..ef07cafc2 100644 --- a/pkg/models/namespace_team_test.go +++ b/pkg/models/namespace_team_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_test.go b/pkg/models/namespace_test.go index 4e5558a71..81b4ef991 100644 --- a/pkg/models/namespace_test.go +++ b/pkg/models/namespace_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_users.go b/pkg/models/namespace_users.go index 0ba91c3b4..b311b51fb 100644 --- a/pkg/models/namespace_users.go +++ b/pkg/models/namespace_users.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_users_rights.go b/pkg/models/namespace_users_rights.go index 15e07ec8b..00c02d11e 100644 --- a/pkg/models/namespace_users_rights.go +++ b/pkg/models/namespace_users_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_users_rights_test.go b/pkg/models/namespace_users_rights_test.go index a4aec3cfe..20de120f5 100644 --- a/pkg/models/namespace_users_rights_test.go +++ b/pkg/models/namespace_users_rights_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/namespace_users_test.go b/pkg/models/namespace_users_test.go index 94b2b9ac9..4bcb49d9c 100644 --- a/pkg/models/namespace_users_test.go +++ b/pkg/models/namespace_users_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/rights.go b/pkg/models/rights.go index aab57c3e1..f63270179 100644 --- a/pkg/models/rights.go +++ b/pkg/models/rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/task_assignees.go b/pkg/models/task_assignees.go index 4a876b01f..b588a6497 100644 --- a/pkg/models/task_assignees.go +++ b/pkg/models/task_assignees.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/task_assignees_rights.go b/pkg/models/task_assignees_rights.go index 9d5221285..090f6d77d 100644 --- a/pkg/models/task_assignees_rights.go +++ b/pkg/models/task_assignees_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/task_attachment.go b/pkg/models/task_attachment.go index eed59f9b1..b62f89528 100644 --- a/pkg/models/task_attachment.go +++ b/pkg/models/task_attachment.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/task_attachment_rights.go b/pkg/models/task_attachment_rights.go index fbbeb33c9..43c447da0 100644 --- a/pkg/models/task_attachment_rights.go +++ b/pkg/models/task_attachment_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/task_attachment_test.go b/pkg/models/task_attachment_test.go index 7df554b60..cdb863e9d 100644 --- a/pkg/models/task_attachment_test.go +++ b/pkg/models/task_attachment_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/task_collection.go b/pkg/models/task_collection.go index 3bd26b856..73840c768 100644 --- a/pkg/models/task_collection.go +++ b/pkg/models/task_collection.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/task_collection_sort.go b/pkg/models/task_collection_sort.go index a729e32fd..2b1e83175 100644 --- a/pkg/models/task_collection_sort.go +++ b/pkg/models/task_collection_sort.go @@ -1,18 +1,18 @@ -// Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Vikunja is a todo-list application to facilitate your life. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU 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 free software: you can redistribute it and/or modify +// it under the terms of the GNU 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 General Public License for more details. +// 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 General Public License for more details. // -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . package models diff --git a/pkg/models/task_collection_sort_test.go b/pkg/models/task_collection_sort_test.go index 0697e094a..f76fe68ca 100644 --- a/pkg/models/task_collection_sort_test.go +++ b/pkg/models/task_collection_sort_test.go @@ -1,18 +1,18 @@ -// Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Vikunja is a todo-list application to facilitate your life. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU 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 free software: you can redistribute it and/or modify +// it under the terms of the GNU 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 General Public License for more details. +// 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 General Public License for more details. // -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . package models diff --git a/pkg/models/task_collection_test.go b/pkg/models/task_collection_test.go index e3cd925ca..26807a6ce 100644 --- a/pkg/models/task_collection_test.go +++ b/pkg/models/task_collection_test.go @@ -1,18 +1,18 @@ -// Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Vikunja is a todo-list application to facilitate your life. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // -// This program is free software: you can redistribute it and/or modify -// it under the terms of the GNU 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 free software: you can redistribute it and/or modify +// it under the terms of the GNU 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 General Public License for more details. +// 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 General Public License for more details. // -// You should have received a copy of the GNU General Public License -// along with this program. If not, see . +// You should have received a copy of the GNU General Public License +// along with this program. If not, see . package models diff --git a/pkg/models/task_relation.go b/pkg/models/task_relation.go index ebad999c1..c11d99119 100644 --- a/pkg/models/task_relation.go +++ b/pkg/models/task_relation.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/task_relation_rights.go b/pkg/models/task_relation_rights.go index 989df77ee..5239b2846 100644 --- a/pkg/models/task_relation_rights.go +++ b/pkg/models/task_relation_rights.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/task_relation_test.go b/pkg/models/task_relation_test.go index 44a676e0e..52f6c4f4b 100644 --- a/pkg/models/task_relation_test.go +++ b/pkg/models/task_relation_test.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/models/tasks.go b/pkg/models/tasks.go index ac3fd7a1c..ee99e6eff 100644 --- a/pkg/models/tasks.go +++ b/pkg/models/tasks.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/tasks_rights.go b/pkg/models/tasks_rights.go index 0101bdead..896787a85 100644 --- a/pkg/models/tasks_rights.go +++ b/pkg/models/tasks_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/tasks_test.go b/pkg/models/tasks_test.go index 55cd23d0c..2d40bf9e9 100644 --- a/pkg/models/tasks_test.go +++ b/pkg/models/tasks_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/team_members.go b/pkg/models/team_members.go index d3437fa15..39acedc93 100644 --- a/pkg/models/team_members.go +++ b/pkg/models/team_members.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/team_members_rights.go b/pkg/models/team_members_rights.go index 1bd443ba6..203f30fdf 100644 --- a/pkg/models/team_members_rights.go +++ b/pkg/models/team_members_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/team_members_test.go b/pkg/models/team_members_test.go index 4a9493fd4..3d43ff39e 100644 --- a/pkg/models/team_members_test.go +++ b/pkg/models/team_members_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/teams.go b/pkg/models/teams.go index ab280d0ab..db8a6d4df 100644 --- a/pkg/models/teams.go +++ b/pkg/models/teams.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/teams_rights.go b/pkg/models/teams_rights.go index b146eb91f..265e82c38 100644 --- a/pkg/models/teams_rights.go +++ b/pkg/models/teams_rights.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/teams_rights_test.go b/pkg/models/teams_rights_test.go index 8c08d8836..45ac3446d 100644 --- a/pkg/models/teams_rights_test.go +++ b/pkg/models/teams_rights_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/teams_test.go b/pkg/models/teams_test.go index 494e6ca77..01d7360bf 100644 --- a/pkg/models/teams_test.go +++ b/pkg/models/teams_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/unit_tests.go b/pkg/models/unit_tests.go index 72c96f494..84fa09790 100644 --- a/pkg/models/unit_tests.go +++ b/pkg/models/unit_tests.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/user.go b/pkg/models/user.go index 8b097106c..e2c2e8108 100644 --- a/pkg/models/user.go +++ b/pkg/models/user.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/user_email_confirm.go b/pkg/models/user_email_confirm.go index 2843ecf81..216d89b71 100644 --- a/pkg/models/user_email_confirm.go +++ b/pkg/models/user_email_confirm.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/user_email_confirm_test.go b/pkg/models/user_email_confirm_test.go index ef7a8c224..e24018051 100644 --- a/pkg/models/user_email_confirm_test.go +++ b/pkg/models/user_email_confirm_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/user_password_reset.go b/pkg/models/user_password_reset.go index d266736f7..f2d273bc9 100644 --- a/pkg/models/user_password_reset.go +++ b/pkg/models/user_password_reset.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/user_test.go b/pkg/models/user_test.go index 9cf6972ec..f400875c5 100644 --- a/pkg/models/user_test.go +++ b/pkg/models/user_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/models/users_list.go b/pkg/models/users_list.go index 54e51bfed..c0aefe128 100644 --- a/pkg/models/users_list.go +++ b/pkg/models/users_list.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/red/redis.go b/pkg/red/redis.go index de6712277..2c61b9099 100644 --- a/pkg/red/redis.go +++ b/pkg/red/redis.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/auth.go b/pkg/routes/api/v1/auth.go index 61230726b..ee7688e1e 100644 --- a/pkg/routes/api/v1/auth.go +++ b/pkg/routes/api/v1/auth.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/docs.go b/pkg/routes/api/v1/docs.go index 9537e8995..6ecba1614 100644 --- a/pkg/routes/api/v1/docs.go +++ b/pkg/routes/api/v1/docs.go @@ -1,7 +1,7 @@ //lint:file-ignore ST1018 The const below is not ours // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/info.go b/pkg/routes/api/v1/info.go index 7500ae069..afb39f9e6 100644 --- a/pkg/routes/api/v1/info.go +++ b/pkg/routes/api/v1/info.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/link_sharing_auth.go b/pkg/routes/api/v1/link_sharing_auth.go index a6d42cf9d..7736deb72 100644 --- a/pkg/routes/api/v1/link_sharing_auth.go +++ b/pkg/routes/api/v1/link_sharing_auth.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/list_by_namespace.go b/pkg/routes/api/v1/list_by_namespace.go index 32467fd54..6287c1537 100644 --- a/pkg/routes/api/v1/list_by_namespace.go +++ b/pkg/routes/api/v1/list_by_namespace.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/login.go b/pkg/routes/api/v1/login.go index 2e1555718..2eeea4fe3 100644 --- a/pkg/routes/api/v1/login.go +++ b/pkg/routes/api/v1/login.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/task_attachment.go b/pkg/routes/api/v1/task_attachment.go index ce48c1f33..4d189ed0b 100644 --- a/pkg/routes/api/v1/task_attachment.go +++ b/pkg/routes/api/v1/task_attachment.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/token_check.go b/pkg/routes/api/v1/token_check.go index 64e360ad4..41d974c19 100644 --- a/pkg/routes/api/v1/token_check.go +++ b/pkg/routes/api/v1/token_check.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_add_update.go b/pkg/routes/api/v1/user_add_update.go index a20a396af..08aa4390a 100644 --- a/pkg/routes/api/v1/user_add_update.go +++ b/pkg/routes/api/v1/user_add_update.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_confirm_email.go b/pkg/routes/api/v1/user_confirm_email.go index ee8598950..f5021ad01 100644 --- a/pkg/routes/api/v1/user_confirm_email.go +++ b/pkg/routes/api/v1/user_confirm_email.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_delete.go b/pkg/routes/api/v1/user_delete.go index a9bbdd42d..8940b22b4 100644 --- a/pkg/routes/api/v1/user_delete.go +++ b/pkg/routes/api/v1/user_delete.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_list.go b/pkg/routes/api/v1/user_list.go index a938df9d6..8ae333999 100644 --- a/pkg/routes/api/v1/user_list.go +++ b/pkg/routes/api/v1/user_list.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_password_reset.go b/pkg/routes/api/v1/user_password_reset.go index 8b0c64ffc..62512c790 100644 --- a/pkg/routes/api/v1/user_password_reset.go +++ b/pkg/routes/api/v1/user_password_reset.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_show.go b/pkg/routes/api/v1/user_show.go index 8d9e478c2..5cae05c5a 100644 --- a/pkg/routes/api/v1/user_show.go +++ b/pkg/routes/api/v1/user_show.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/api/v1/user_update_password.go b/pkg/routes/api/v1/user_update_password.go index 4dbc9ae54..74c251e53 100644 --- a/pkg/routes/api/v1/user_update_password.go +++ b/pkg/routes/api/v1/user_update_password.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/caldav/handler.go b/pkg/routes/caldav/handler.go index 28d0ecaa8..afab35273 100644 --- a/pkg/routes/caldav/handler.go +++ b/pkg/routes/caldav/handler.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/caldav/listStorageProvider.go b/pkg/routes/caldav/listStorageProvider.go index 479fe54c9..88419892e 100644 --- a/pkg/routes/caldav/listStorageProvider.go +++ b/pkg/routes/caldav/listStorageProvider.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/caldav/parsing.go b/pkg/routes/caldav/parsing.go index bd550182e..86855bbb4 100644 --- a/pkg/routes/caldav/parsing.go +++ b/pkg/routes/caldav/parsing.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/routes/metrics.go b/pkg/routes/metrics.go index d5b338a11..b960f6025 100644 --- a/pkg/routes/metrics.go +++ b/pkg/routes/metrics.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/routes/rate_limit.go b/pkg/routes/rate_limit.go index a9cb5bc26..17558a119 100644 --- a/pkg/routes/rate_limit.go +++ b/pkg/routes/rate_limit.go @@ -1,4 +1,4 @@ -// Copyright 2019 Vikunja and contriubtors. All rights reserved. +// Copyright 2018-2020 Vikunja and contriubtors. All rights reserved. // // This file is part of Vikunja. // diff --git a/pkg/routes/routes.go b/pkg/routes/routes.go index c0a62accb..e5e8f0cc6 100644 --- a/pkg/routes/routes.go +++ b/pkg/routes/routes.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/static/static.go b/pkg/static/static.go index 3f5d008e8..3ab100e3e 100644 --- a/pkg/static/static.go +++ b/pkg/static/static.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/static/templates.go b/pkg/static/templates.go index 5799c7c10..a82a01a21 100644 --- a/pkg/static/templates.go +++ b/pkg/static/templates.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/static/templates_generate.go b/pkg/static/templates_generate.go index 6b42c0f01..1544b0b0d 100644 --- a/pkg/static/templates_generate.go +++ b/pkg/static/templates_generate.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/md5_string.go b/pkg/utils/md5_string.go index 3880e0b5a..05826ff04 100644 --- a/pkg/utils/md5_string.go +++ b/pkg/utils/md5_string.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/md5_string_test.go b/pkg/utils/md5_string_test.go index 62dd2fb8b..c5eef8fee 100644 --- a/pkg/utils/md5_string_test.go +++ b/pkg/utils/md5_string_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/random_string.go b/pkg/utils/random_string.go index 252c081c1..3bc73a6b3 100644 --- a/pkg/utils/random_string.go +++ b/pkg/utils/random_string.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/random_string_test.go b/pkg/utils/random_string_test.go index 56908a9bb..5003b1c7b 100644 --- a/pkg/utils/random_string_test.go +++ b/pkg/utils/random_string_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/sha256.go b/pkg/utils/sha256.go index 5e77f9475..2a09ee5f6 100644 --- a/pkg/utils/sha256.go +++ b/pkg/utils/sha256.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/utils/sha256_test.go b/pkg/utils/sha256_test.go index 2518ca7c8..5ee394e6f 100644 --- a/pkg/utils/sha256_test.go +++ b/pkg/utils/sha256_test.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/pkg/version/version.go b/pkg/version/version.go index bf449aabe..1a7c5b6e3 100644 --- a/pkg/version/version.go +++ b/pkg/version/version.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by diff --git a/tools.go b/tools.go index f1dec3d6c..2e8e6cbac 100644 --- a/tools.go +++ b/tools.go @@ -1,5 +1,5 @@ // Vikunja is a todo-list application to facilitate your life. -// Copyright 2018-2019 Vikunja and contributors. All rights reserved. +// Copyright 2018-2020 Vikunja and contributors. All rights reserved. // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by