summaryrefslogtreecommitdiffstats
path: root/js/app
diff options
context:
space:
mode:
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;