Skip to content

Commit

Permalink
fix: Use supportedApps (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
rcooney authored Sep 18, 2023
1 parent 8243ae5 commit de033ac
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,7 @@ To use the XML activities in [VertiGIS Studio Workflow Designer](https://apps.ve
- URL: The URL to this activity pack manifest
- Use https://unpkg.com/@vertigis/workflow-activities-xml/activitypack.json for the latest version
- Use https://unpkg.com/@vertigis/[email protected]/activitypack.json for a specific version
- Use https://localhost:5000/activitypack.json for a local development version
- Title: Your desired title
- Tags: Must include `geocortex-workflow-activity-pack`
1. Reload [VertiGIS Studio Workflow Designer](https://apps.vertigisstudio.com/workflow/designer/)
Expand Down
2 changes: 1 addition & 1 deletion src/activities/ConvertToXml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ interface ConvertToXmlOutputs {
* @category XML
* @description Converts an object to XML text.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GVH, GWV, WAB
*/
export default class ConvertToXmlActivity implements IActivityHandler {
execute(inputs: ConvertToXmlInputs): ConvertToXmlOutputs {
Expand Down
2 changes: 1 addition & 1 deletion src/activities/ParseXml.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ interface ParseXmlOutputs {
* @category XML
* @description Converts XML text into an object.
* @clientOnly
* @unsupportedApps GMV
* @supportedApps EXB, GVH, GWV, WAB
*/
export default class ParseXml implements IActivityHandler {
execute(inputs: ParseXmlInputs): ParseXmlOutputs {
Expand Down

0 comments on commit de033ac

Please sign in to comment.