You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@syncope.apache.org by md...@apache.org on 2020/11/13 16:01:35 UTC

[syncope] branch 2_1_X updated: [SYNCOPE-1600] fix

This is an automated email from the ASF dual-hosted git repository.

mdisabatino pushed a commit to branch 2_1_X
in repository https://gitbox.apache.org/repos/asf/syncope.git


The following commit(s) were added to refs/heads/2_1_X by this push:
     new ccd4331  [SYNCOPE-1600] fix
ccd4331 is described below

commit ccd4331cb8a9f32519cf982d41174c7fcde04b04
Author: Marco Di Sabatino Di Diodoro <ma...@tirasa.net>
AuthorDate: Fri Nov 13 17:01:03 2020 +0100

    [SYNCOPE-1600] fix
---
 .../apache/syncope/core/flowable/impl/FlowableUserRequestHandler.java | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/ext/flowable/flowable-bpmn/src/main/java/org/apache/syncope/core/flowable/impl/FlowableUserRequestHandler.java b/ext/flowable/flowable-bpmn/src/main/java/org/apache/syncope/core/flowable/impl/FlowableUserRequestHandler.java
index f176f5f..2b267ab 100644
--- a/ext/flowable/flowable-bpmn/src/main/java/org/apache/syncope/core/flowable/impl/FlowableUserRequestHandler.java
+++ b/ext/flowable/flowable-bpmn/src/main/java/org/apache/syncope/core/flowable/impl/FlowableUserRequestHandler.java
@@ -295,6 +295,10 @@ public class FlowableUserRequestHandler implements UserRequestHandler {
                 case "dropdown":
                     result = UserRequestFormPropertyType.Dropdown;
                     break;
+                    
+                case "password":
+                    result = UserRequestFormPropertyType.Password;
+                    break;
 
                 case "string":
                 default: