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:03:12 UTC

[syncope] branch master updated: [SYNCOPE-1600] fix

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

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


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

commit 7dc48cc6cc7cf13137a1ee1582ca09b12ade4f48
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 5cbbf91..d9a23c0 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
@@ -290,6 +290,10 @@ public class FlowableUserRequestHandler implements UserRequestHandler {
                 case "dropdown":
                     result = UserRequestFormPropertyType.Dropdown;
                     break;
+                    
+                case "password":
+                    result = UserRequestFormPropertyType.Password;
+                    break;
 
                 case "string":
                 default: