-
I have 50+ custom activities I built for Elsa 2. These are all used in programmatic workflows because I didn't like the old implementation of the studio. The Elsa 3 studio is much nicer and I'm in the process of migrating across. Is there anyway in code, by way of embedded resources, an attribute for dataurl or byte array, etc, that allows me to use custom icons for these in the studio, or is the approach similar to the previous version where I'd need to put together some kind of front end manifest and inject them? Sorry if this is answered somewhere else. I couldn't find anything in the documentation. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 3 replies
-
There is an interface for adding custom colors and icons to activities |
Beta Was this translation helpful? Give feedback.
There is an interface for adding custom colors and icons to activities
IActivityDisplaySettingsProvider
you can create a custom provider inheriting from that and registering it with services.AddActivityDisplaySettingsProvider();
You should be able to add your custom resources/icons to your custom activities with that.