Remove unused angular filter for oauth clients

This commit is contained in:
Johannes Zellner
2020-02-24 14:36:52 +01:00
parent 6b89b2be5e
commit 4b1cb76eaf

View File

@@ -208,12 +208,6 @@ app.filter('applicationLink', function() {
};
});
app.filter('activeOAuthClients', function () {
return function (clients, user) {
return clients.filter(function (c) { return user.admin || (c.activeTokens && c.activeTokens.length > 0); });
};
});
// this appears when an item in app grid is clicked
app.filter('prettyAppErrorMessage', function () {
return function (app) {