summaryrefslogtreecommitdiffstats
path: root/js
diff options
context:
space:
mode:
authorMarco Nassabain <marco.nassabain@hotmail.com>2021-03-02 23:15:41 +0100
committerSean Molenaar <SMillerDev@users.noreply.github.com>2021-04-08 23:17:31 +0200
commitcfea34ba14ff2c7b1b13eddd249ea37c427b3f2d (patch)
tree3e497f8f7673e59848161844d5b4c31ceda0c50b /js
parent96846e12667e013483e50fda622716df2db5acee (diff)
🧹 Cleanup code to match master
Signed-off-by: Marco Nassabain <marco.nassabain@hotmail.com>
Diffstat (limited to 'js')
-rw-r--r--js/app/Run.js2
-rw-r--r--js/controller/ContentController.js1
2 files changed, 2 insertions, 1 deletions
diff --git a/js/app/Run.js b/js/app/Run.js
index cd23e8996..4eab8ca4d 100644
--- a/js/app/Run.js
+++ b/js/app/Run.js
@@ -44,9 +44,11 @@ app.run(function ($rootScope, $location, $http, $q, $interval, $route, Loading,
case FEED_TYPE.STARRED:
url = '/items/starred';
break;
+
case FEED_TYPE.SHARED:
url = '/items/shared';
break;
+
case FEED_TYPE.EXPLORE:
url = '/explore';
break;
diff --git a/js/controller/ContentController.js b/js/controller/ContentController.js
index 5d0cf30f1..b0478f0c4 100644
--- a/js/controller/ContentController.js
+++ b/js/controller/ContentController.js
@@ -231,5 +231,4 @@ app.controller('ContentController', function (Publisher, FeedResource, ItemResou
};
this.activeItem = this.getFirstItem();
-
}); \ No newline at end of file