Remove superfluous path

Revision path is now returned from API endpoint and thus
can be removed from the path helper.
pull/3323/head
Oliver Günther 9 years ago
parent d9d784e5cf
commit d92cf8e210
  1. 6
      frontend/app/helpers/path-helper.js

@ -76,12 +76,6 @@ module.exports = function() {
queryPath: function(queryIdentifier) {
return '/queries/' + queryIdentifier;
},
repositoryPath: function(projectIdentifier) {
return PathHelper.projectPath(projectIdentifier) + '/repository';
},
revisionPath: function(projectIdentifier, revisionIdentifier) {
return PathHelper.repositoryPath(projectIdentifier) + '/revision/' + revisionIdentifier;
},
timeEntriesPath: function(projectIdentifier, workPackageIdentifier) {
var path = '/time_entries';

Loading…
Cancel
Save