Integration with CAS - SSO

We have our own single sign on using CAS. Is there any way we can use the CAS login for flowable application as well?

I see a existing post but no of much help.

The UI applications use Spring Boot and Spring security for authentication/authorization. You would need to override/extend the beans here: https://github.com/flowable/flowable-engine/blob/master/modules/flowable-ui-task/flowable-ui-task-conf/src/main/java/org/flowable/ui/task/conf/SecurityConfiguration.java#L53

(this is only for one app, you’d need to do the same for all other apps)

You’d need a custom configuration for this: see more info here Custom Bean deployment for Task/Rest App

1 Like