Tim Cortesi
Tim Cortesi
### Background: Like App Instances, Workflow Instances can be tied to a specific workflow version and have their own workflow configuration. Once a workflow submission is made against a specific...
In `Libraries/CustomAuth.php` line 36, there is the following if statement: ```php if(!count(User::get())){ ``` That is there to check to see if at least one user exists within Graphene. If one...
If you try to save an API Instance that doesn't have any API Options, an error is thrown in the console, and the API Instance can't be saved. Workaround: Add...
In workflow email tasks, you can specify a workflow template to use when sending the email. That seems to work ok, except that if the order of the templates changes,...
I just received a request from a department who would like the ability to change the owner (original submitter) of a workflow after it has been submitted. Use case is...
I recommend changing the default mysql database config in `database.php` to the following Laravel 9 Defaults: ```php 'charset' => 'utf8mb4', 'collation' => 'utf8mb4_unicode_ci', ``` (See lines 55, 56 here: https://github.com/laravel/laravel/blob/9.x/config/database.php)...
Build some kind of mechanism on a workflow or a workflow state to allow nudge emails or some sort of reminders if no actions are taken within a specified period...
If I try to run gform in node (via the command line), I get an error that "_" is undefined. I can address that error by including the lodash source...
- We need the ability to get a boolean response from a list of individuals (yes / no, pass / fail, approve / reject, etc) and store that somewhere so...
Create the ability for Workflow administrators (or similar?) to see what the currently assigned user is seeing, as a mechanism to help support that user. Possible discussed implementations are: -...