Actions
Feature proposal #6964
closedImprove user looping check to also look for a comma list of user ids
Description
If the manually selected user variable is a string then explode by comma and sanitize to integer. This will allow comma lists of users to also be acted on.
Updated by krileon almost 7 years ago
- Status changed from Assigned to Resolved
- % Done changed from 0 to 100
This will work for both Manually and Custom usages. The variable or returned value must be a string and must be comma separation of integers only. It will not validate against and work with anything else. Examples as follows.
Valid
42,43,44,46,44,46
42,44
Invalid
42,44,ABC
42, 44
42,44,
,42,44
This will allow custom trigger implementations or comma stored usages to easily pass a list of users to act upon.
Actions