-
-
Notifications
You must be signed in to change notification settings - Fork 4.7k
Generate the checks list in JS #582
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
|
@nickvergessen, thanks for your PR! By analyzing the annotation information on this pull request, we identified @rullzer, @PVince81 and @icewind1991 to be potential reviewers |
d5fd765 to
1b9f9a7
Compare
|
Rebased on after merge of #565 please review @MorrisJobke and @rullzer |
1b9f9a7 to
9c6cd59
Compare
9c6cd59 to
681eebc
Compare
apps/workflowengine/js/admin.js
Outdated
| }); | ||
|
|
||
| OCA.WorkflowEngine = OCA.WorkflowEngine || {}; | ||
| OCA.WorkflowEngine = OCA.WorkflowEngine || { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could cause issues, when another app registers this name and only assigns {}. Maybe in case the OCA.WorkflowEngine already exists we merge it (see underscore methods).
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
So, like:
OCA.WorkflowEngine = _.extent(OCA.WorkflowEngine || {}, {
availablePlugins: [],
...
});|
Looks really nice. Once my comments are addressed I will test it :) |
|
Comments addressed |
| /** @var OC_L10N $l */ | ||
| ?> | ||
| <div id="workflowengine" class="section workflowengine"> | ||
| <div id="<?php p($_['appid']); ?>" class="section workflowengine"> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
👍
|
Tested and works 👍 |
|
👍 |
fix(ci-action): rename CI action triage config file
Fix #574