Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
bc6c05a
Add workflowengine
MorrisJobke Jul 26, 2016
6eabcf1
create an operation based on the correct model
MorrisJobke Jul 26, 2016
497954c
Move template to workflowengine app
MorrisJobke Jul 26, 2016
80eeedc
Add app to provisioning output
nickvergessen Jul 26, 2016
b2e4a8c
fix unit tests
MorrisJobke Jul 26, 2016
01ec62e
fix enabled apps tests
MorrisJobke Jul 27, 2016
155e4ce
Generate the checks list in JS
nickvergessen Jul 26, 2016
6a21289
Remove php side of check registration
nickvergessen Jul 27, 2016
34f46c8
Fix morris comments
nickvergessen Jul 27, 2016
0ebc3bb
Fix default value of operator
nickvergessen Jul 27, 2016
ec8ec17
Allow to reuse the template
nickvergessen Jul 27, 2016
2a4a127
Allow DI of the workflow manager by the OCP interface
nickvergessen Jul 27, 2016
8e0e85c
Fix loading icon for workflowengine
MorrisJobke Jul 27, 2016
f814ef6
Add L10N support
nickvergessen Jul 27, 2016
c425a67
Add workflowengine to check-code call
MorrisJobke Aug 3, 2016
df3ca56
Make sure each plugin is only added once
nickvergessen Jul 27, 2016
7b73c0f
Add the systemtag js files
nickvergessen Jul 27, 2016
7b87935
Add system tag check
nickvergessen Jul 27, 2016
627f243
Add file size as check
nickvergessen Jul 27, 2016
d146df5
Add file mime type
nickvergessen Jul 28, 2016
45c74cd
User agent check
nickvergessen Jul 28, 2016
01d269b
Add Request URL
nickvergessen Jul 28, 2016
af3eaa8
Add remote address
nickvergessen Jul 28, 2016
f1869cd
Add request time
nickvergessen Jul 28, 2016
e978c39
add a UI to render proper time picker
MorrisJobke Jul 29, 2016
66fd216
Load the timezones via select2
nickvergessen Aug 1, 2016
cc719c9
Translate the errors
nickvergessen Aug 1, 2016
c12c083
Tags need to be loaded before
nickvergessen Aug 1, 2016
7d71535
Allow to define the operation
nickvergessen Aug 2, 2016
065763f
No multi support, less magic
nickvergessen Aug 2, 2016
8d23405
Ooops
nickvergessen Aug 2, 2016
fc7bd03
Add access control and automated tagging as shipped
nickvergessen Aug 3, 2016
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix default value of operator
  • Loading branch information
nickvergessen committed Jul 27, 2016
commit 0ebc3bbc9f90d5a3605cea60f13407058bf2b2a8
4 changes: 2 additions & 2 deletions apps/workflowengine/js/admin.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@

checks.push({
'class': classname,
'operator': operators[0],
'operator': operators[0]['operator'],
'value': ''
});
this.model.set({'checks': checks});
Expand Down Expand Up @@ -242,7 +242,7 @@
if (key === 'class') {
var check = OCA.WorkflowEngine.getCheckByClass(value);
if (!_.isUndefined(check)) {
checks[id]['operator'] = check['operators'][0];
checks[id]['operator'] = check['operators'][0]['operator'];
}
}
// model change will trigger render
Expand Down