summaryrefslogtreecommitdiffstats
path: root/js/app
diff options
context:
space:
mode:
authorMarco Nassabain <marco.nassabain@hotmail.com>2021-03-02 22:53:58 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 22:31:21 +0200
commita1edb03e197c511e0f3324976a9207e92e4abe4b (patch)
tree90264a645e5fb66156245a96d19f7c95825de274 /js/app
parentf708e40b753c7017d9a5b6d1b38dc0eb5cd6ddf8 (diff)
🔥 Remove changes from front-end for back-end pr
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'js/app')
-rw-r--r--js/app/Config.js6
-rw-r--r--js/app/Run.js4
2 files changed, 0 insertions, 10 deletions
diff --git a/js/app/Config.js b/js/app/Config.js
index 8ac503b44..f7c62e7ae 100644
--- a/js/app/Config.js
+++ b/js/app/Config.js
@@ -191,12 +191,6 @@ app.config(function ($routeProvider, $provide, $httpProvider, $locationProvider)
resolve: getItemResolve(feedType.STARRED),
type: feedType.STARRED
})
- .when('/items/shared', {
- controller: 'ContentController as Content',
- templateUrl: 'content.html',
- resolve: getItemResolve(feedType.SHARED),
- type: feedType.SHARED
- })
.when('/items/unread', {
controller: 'ContentController as Content',
templateUrl: 'content.html',
diff --git a/js/app/Run.js b/js/app/Run.js
index 6aa79f7dd..1a1572864 100644
--- a/js/app/Run.js
+++ b/js/app/Run.js
@@ -45,10 +45,6 @@ app.run(function ($rootScope, $location, $http, $q, $interval, $route, Loading,
url = '/items/starred';
break;
- case FEED_TYPE.SHARED:
- url = '/items/shared';
- break;
-
case FEED_TYPE.EXPLORE:
url = '/explore';
break;