Add Osmose QA layer and service

Initial implementation - need to add UI for the errors and correctly set
up support for the desired error types provided by osmose.
This commit is contained in:
SilentSpike
2019-12-07 15:35:51 +00:00
parent dff56c17d5
commit e11d97b38c
11 changed files with 556 additions and 21 deletions
+7 -1
View File
@@ -149,6 +149,12 @@ export function uiCommit(context) {
tags['closed:improveosm'] = iOsmClosed.join(';').substr(0, tagCharLimit);
}
}
if (services.osmose) {
var osmoseClosed = services.osmose.getClosedIDs();
if (osmoseClosed.length) {
tags['closed:osmose'] = osmoseClosed.join(';').substr(0, 255);
}
}
// remove existing issue counts
for (var key in tags) {
@@ -585,4 +591,4 @@ export function uiCommit(context) {
return utilRebind(commit, dispatch, 'on');
}
}