aboutsummaryrefslogtreecommitdiff
path: root/src/web/models
diff options
context:
space:
mode:
authorCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-27 00:34:45 +0200
committerCédric Bonhomme <cedric@cedricbonhomme.org>2018-10-27 00:34:45 +0200
commitaedd03eb00c5584e180202bf4beadfc3888dbfb8 (patch)
treeb0bb69c1be2f2e3adfe4a9f702bd3c1ea66ef900 /src/web/models
parentFilter feeds per category on the user profile page. (diff)
parentUpdated NPM engine. (diff)
downloadnewspipe-aedd03eb00c5584e180202bf4beadfc3888dbfb8.tar.gz
newspipe-aedd03eb00c5584e180202bf4beadfc3888dbfb8.tar.bz2
newspipe-aedd03eb00c5584e180202bf4beadfc3888dbfb8.zip
Merge branch 'master' of gitlab.com:newspipe/newspipe
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