Skip to content

Commit

Permalink
ON-45030 # Added cachingStrategies to FormsAppBase
Browse files Browse the repository at this point in the history
  • Loading branch information
mymattcarroll committed Nov 21, 2024
1 parent bb5b551 commit 8ade8e0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
### Added

- `nodes` and `type` to `FormApprovalFlowInstanceStep` and `FormApprovalStep`
- `cachingStrategies` to `FormsAppBase`

## [9.0.0] - 2024-11-13

Expand Down
16 changes: 16 additions & 0 deletions OneBlink.SDK/models/FormsAppBase.cs
Original file line number Diff line number Diff line change
Expand Up @@ -84,5 +84,21 @@ public List<FormsAppGroup> groups
{
get; set;
}
public FormsAppCachingStrategies cachingStrategies
{
get; set;
}
}

public class FormsAppCachingStrategies
{
public string singleForm
{
get; set;
}
public string app
{
get; set;
}
}
}

0 comments on commit 8ade8e0

Please sign in to comment.