FOUR-12003: Modeler now detects if process was generated by AI#1731
FOUR-12003: Modeler now detects if process was generated by AI#1731agustinbusso merged 9 commits intoepic/FOUR-11382from
Conversation
src/components/modeler/Modeler.vue
Outdated
| 'processmaker-modeler-data-output-association', | ||
| 'processmaker-modeler-association', | ||
| ], | ||
| multiplayer: null, |
There was a problem hiding this comment.
@danloa what do you think about setting the multiplayer in null here? It is possible this generate unexpected behaviors with collaborative?
There was a problem hiding this comment.
@TinCodes if you want to disable multiplayer you can use the store src/store.js enableMultiplayer
There was a problem hiding this comment.
This was a merge issue on my local, will remove it since multiplayer should not be affected by my changes
src/components/modeler/Modeler.vue
Outdated
| 'processmaker-modeler-data-output-association', | ||
| 'processmaker-modeler-association', | ||
| ], | ||
| multiplayer: null, |
There was a problem hiding this comment.
@TinCodes if you want to disable multiplayer you can use the store src/store.js enableMultiplayer
src/components/modeler/Modeler.vue
Outdated
| 'processmaker-modeler-data-output-association', | ||
| 'processmaker-modeler-association', | ||
| ], | ||
| isAiGenerated: window.ProcessMaker.modeler.isAiGenerated, |
There was a problem hiding this comment.
| isAiGenerated: window.ProcessMaker.modeler.isAiGenerated, | |
| isAiGenerated: window.ProcessMaker?.modeler?.isAiGenerated, |
| @@ -1,5 +1,5 @@ | |||
| <template> | |||
| <b-avatar-group class="container" v-if="!isMultiplayer"> | |||
| <b-avatar-group class="container" v-show="!isMultiplayer"> | |||
There was a problem hiding this comment.
I think is better the v-if in this case. We don't want to render the template and this expensive component just to hide it
There was a problem hiding this comment.
This change was done @rodriquelca but maybe I can change it here too
|
@TinCodes @josechirivella |
Passing run #932 ↗︎Details:
Review all test suite changes for PR #1731 ↗︎ |
|||||||||||||||
Passing run #893 ↗︎Details:
Review all test suite changes for PR #1731 ↗︎ |
|||||||||||||||
|
SonarQube Quality Gate
|
Dante is on PTO and the changes he requested were made








Issue & Reproduction Steps
The new features for AI Unified Generation need a way to detect if a process was made by AI so that it may suggest to create assets for the new process on Modeler.
Solution
Related Tickets & Packages
Code Review Checklist