diff --git a/src/services/service.ts b/src/services/service.ts index c57095c..5365621 100755 --- a/src/services/service.ts +++ b/src/services/service.ts @@ -1188,6 +1188,15 @@ export default class Services { } } + public getPublicData(process: Process): Record | null { + const lastCommitedState = this.getLastCommitedState(process); + if (lastCommitedState && lastCommitedState.descriptions) { + return lastCommitedState.descriptions; + } else { + return null; + } + } + public getProcessName(process: Process): string | null { const lastCommitedState = this.getLastCommitedState(process); if (lastCommitedState && lastCommitedState.descriptions) {