]> git.codecow.com Git - flowpex.git/commitdiff
Simplify category naming since method is searchable when adding Apex Action element...
authorChris Duncan <chris@flowpex.dev>
Mon, 24 Jun 2024 08:40:56 +0000 (01:40 -0700)
committerChris Duncan <chris@flowpex.dev>
Mon, 24 Jun 2024 08:40:56 +0000 (01:40 -0700)
src/System/Blob/size/System_Blob_size.cls
src/System/Blob/toPdf/System_Blob_toPdf.cls
src/System/Blob/toString/System_Blob_toString.cls
src/System/Blob/valueOf/System_Blob_valueOf.cls

index cf6aa6f528aef8986b158a379ebc8dba08c6f572..e124c3f595ef4ef58d6c47fdfb3873ade325b69c 100644 (file)
@@ -5,7 +5,7 @@
 
 global class System_Blob_size {
 
-    @InvocableMethod(label='System.Blob.size()' category='Flowpex System' iconName='slds:custom:custom79' description='Returns the number of characters in the Blob.')
+    @InvocableMethod(label='System.Blob.size()' category='Flowpex' iconName='slds:custom:custom79' description='Returns the number of characters in the Blob.')
 
     global static List<Response> System_Blob_size (List<Request> requests) {
         List<Response> responses = new List<Response>();
index b7e11d9fa6373858f2b79ffcbd197aa1b47b24ad..41ddf395e6cc8ebfdf631e0de6f624ac56cc9527 100644 (file)
@@ -5,7 +5,7 @@
 
 global class System_Blob_toPdf {
 
-    @InvocableMethod(label='System.Blob.toPdf()' category='Flowpex System' iconName='slds:standard:form' description='Creates a binary object out of the given string, encoding it as a PDF file.')
+    @InvocableMethod(label='System.Blob.toPdf()' category='Flowpex' iconName='slds:standard:form' description='Creates a binary object out of the given string, encoding it as a PDF file.')
 
     global static List<Response> System_Blob_toPdf (List<Request> requests) {
         List<Response> responses = new List<Response>();
index 8edb00f2bdd13cf10014509942fcc9fe535c6771..b76ddb836869ba75f7dd43e06cebea2d5f7e00e4 100644 (file)
@@ -5,7 +5,7 @@
 
 global class System_Blob_toString {
 
-    @InvocableMethod(label='System.Blob.toString()' category='Flowpex System' iconName='slds:standard:text' description='Casts the Blob into a String.')
+    @InvocableMethod(label='System.Blob.toString()' category='Flowpex' iconName='slds:standard:text' description='Casts the Blob into a String.')
 
     global static List<Response> System_Blob_toString (List<Request> requests) {
         List<Response> responses = new List<Response>();
index 509289776d54da99cf11fa54ef64bb5397860f39..5f46c97af6cbaea9229ff746043b4c7e2b12bd97 100644 (file)
@@ -5,7 +5,7 @@
 
 global class System_Blob_valueOf {
 
-    @InvocableMethod(label='System.Blob.valueOf()' category='Flowpex System' iconName='slds:standard:default' description='Casts the specified String to a Blob.')
+    @InvocableMethod(label='System.Blob.valueOf()' category='Flowpex' iconName='slds:standard:default' description='Casts the specified String to a Blob.')
 
     global static List<Response> System_Blob_valueOf (List<Request> requests) {
         List<Response> responses = new List<Response>();