Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[feature][expression] base64 to and from helps
  • Loading branch information
JanCaha authored and nyalldawson committed May 20, 2020
1 parent 357bc1d commit 988ac20
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
11 changes: 11 additions & 0 deletions resources/function_help/json/from_base64
@@ -0,0 +1,11 @@

{
"name": "from_base64",
"type": "function",
"description": "Decodes a provided string in Base64 into readable string.",
"variableLenArguments": false,
"arguments": [
{"arg":"string", "description": "the string to decode"}],
"examples": [ { "expression":"from_base64('UUdJUw==')", "returns":"'QGIS'"}
]
}
11 changes: 11 additions & 0 deletions resources/function_help/json/to_base64
@@ -0,0 +1,11 @@

{
"name": "to_base64",
"type": "function",
"description": "Encodes a provided string using Base64.",
"variableLenArguments": false,
"arguments": [
{"arg":"string", "description": "the string to encode"}],
"examples": [ { "expression":"to_base64('QGIS')", "returns":"'UUdJUw=='"}
]
}

0 comments on commit 988ac20

Please sign in to comment.