Skip to content

Commit

Permalink
Merge pull request #341 from oneblink/ON-45030
Browse files Browse the repository at this point in the history
ON-45030 # Added cachingStrategies to FormsAppBase
  • Loading branch information
jdawg093 authored Nov 24, 2024
2 parents bb5b551 + 8ade8e0 commit 982a6ec
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 982a6ec

Please sign in to comment.