Add getViewsByMciCode()

* Store MCI code in View when created from MCI
* Allow retrieval by MCI code
This commit is contained in:
Bryan Ashby 2018-01-31 22:38:02 -07:00
parent cb8d331415
commit d244cd25fa
2 changed files with 24 additions and 6 deletions

View file

@ -199,5 +199,9 @@ MCIViewFactory.prototype.createFromMCI = function(mci) {
break;
}
if(view) {
view.mciCode = mci.code;
}
return view;
};