aboutsummaryrefslogtreecommitdiff
path: root/src/web/models
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-15 10:16:55 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-15 10:16:55 +0200
commitd3ca747f2f317a901d6e5856e97d90957ba785b9 (patch)
treeafe7a7608f5b310f3097776a125e0fff3b62a32c /src/web/models
parentMerge branch 'master' of github.com:newspipe/newspipe (diff)
downloadnewspipe-d3ca747f2f317a901d6e5856e97d90957ba785b9.tar.gz
newspipe-d3ca747f2f317a901d6e5856e97d90957ba785b9.tar.bz2
newspipe-d3ca747f2f317a901d6e5856e97d90957ba785b9.zip
Updated some links
Diffstat (limited to 'src/web/models')
-rw-r--r--src/web/models/__init__.py2
-rw-r--r--src/web/models/article.py2
-rw-r--r--src/web/models/bookmark.py2
-rw-r--r--src/web/models/feed.py2
-rw-r--r--src/web/models/role.py2
-rw-r--r--src/web/models/user.py2
6 files changed, 6 insertions, 6 deletions
diff --git a/src/web/models/__init__.py b/src/web/models/__init__.py
index 5ce39115..91a2121e 100644
--- a/src/web/models/__init__.py
+++ b/src/web/models/__init__.py
@@ -4,7 +4,7 @@
# newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/Newspipe/Newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
diff --git a/src/web/models/article.py b/src/web/models/article.py
index 5ce43db8..9429b485 100644
--- a/src/web/models/article.py
+++ b/src/web/models/article.py
@@ -4,7 +4,7 @@
# Newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/Newspipe/Newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
diff --git a/src/web/models/bookmark.py b/src/web/models/bookmark.py
index c1204e9a..eb6b73e3 100644
--- a/src/web/models/bookmark.py
+++ b/src/web/models/bookmark.py
@@ -4,7 +4,7 @@
# Newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/newspipe/newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
diff --git a/src/web/models/feed.py b/src/web/models/feed.py
index b733cd58..fc0b64cb 100644
--- a/src/web/models/feed.py
+++ b/src/web/models/feed.py
@@ -4,7 +4,7 @@
# newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/Newspipe/Newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
diff --git a/src/web/models/role.py b/src/web/models/role.py
index 82601bbb..0a2ecd4a 100644
--- a/src/web/models/role.py
+++ b/src/web/models/role.py
@@ -4,7 +4,7 @@
# newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/Newspipe/Newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
diff --git a/src/web/models/user.py b/src/web/models/user.py
index e0f86328..66627777 100644
--- a/src/web/models/user.py
+++ b/src/web/models/user.py
@@ -4,7 +4,7 @@
# newspipe - A Web based news aggregator.
# Copyright (C) 2010-2018 Cédric Bonhomme - https://www.cedricbonhomme.org
#
-# For more information : https://github.com/newspipe/newspipe
+# For more information : https://gitlab.com/newspipe/newspipe
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as
bgstack15