Skip to content

Commit

Permalink
vault upgrade (#93)
Browse files Browse the repository at this point in the history
* vault upgrade

* IFF
  • Loading branch information
austinFlipside authored Apr 17, 2024
1 parent 89225ab commit 554550f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions macros/marketplace/github/utils_udfs.yaml.sql
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,8 @@
{'Authorization': 'Bearer {TOKEN}',
'X-GitHub-Api-Version': '2022-11-28'},
{},
'_FSC_SYS/GITHUB'
IFF(_utils.udf_whoami() <> CURRENT_USER(), '_FSC_SYS/GITHUB', 'vault/github/api')

) as response

- name: {{ schema_name -}}.headers
Expand Down Expand Up @@ -48,7 +49,7 @@
CONCAT_WS('/', 'https://api.github.com', route || '?') || utils.udf_urlencode(query),
PARSE_JSON({{ schema_name -}}.headers()),
{},
'_FSC_SYS/GITHUB'
IFF(_utils.udf_whoami() <> CURRENT_USER(), '_FSC_SYS/GITHUB', 'vault/github/api')
)
- name: {{ schema_name -}}.post
signature:
Expand All @@ -65,7 +66,7 @@
CONCAT_WS('/', 'https://api.github.com', route),
PARSE_JSON({{ schema_name -}}.headers()),
data,
'_FSC_SYS/GITHUB'
IFF(_utils.udf_whoami() <> CURRENT_USER(), '_FSC_SYS/GITHUB', 'vault/github/api')
)
- name: {{ schema_name -}}.put
signature:
Expand All @@ -82,6 +83,6 @@
CONCAT_WS('/', 'https://api.github.com', route),
PARSE_JSON({{ schema_name -}}.headers()),
data,
'_FSC_SYS/GITHUB'
IFF(_utils.udf_whoami() <> CURRENT_USER(), '_FSC_SYS/GITHUB', 'vault/github/api')
)
{% endmacro %}

0 comments on commit 554550f

Please sign in to comment.