Merge pull request #5363 from mabashian/5357-wfjt-activity-stream

Fixed jt/wfjt links in activity stream
This commit is contained in:
Michael Abashian 2017-02-15 09:46:37 -05:00 committed by GitHub
commit 9c3ca9e67d

View File

@ -80,6 +80,12 @@ angular.module('StreamWidget', ['RestServices', 'Utilities', 'StreamListDefiniti
break;
case 'role':
throw {name : 'NotImplementedError', message : 'role object management is not consolidated to a single UI view'};
case 'job_template':
url += `templates/job_template/${obj.id}`;
break;
case 'workflow_job_template':
url += `templates/workflow_job_template/${obj.id}`;
break;
default:
url += resource + 's/' + obj.id + '/';
}