Skip to content

Commit

Permalink
Merge branch 'main' into patch/DXCDT-249-client-aliases
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiught authored Oct 14, 2022
2 parents 455fdad + de4a0d8 commit e7745b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/resources/connection.md
Original file line number Diff line number Diff line change
Expand Up @@ -216,7 +216,7 @@ resource "auth0_connection" "oauth2" {
pkce_enabled = true
scripts = {
fetchUserProfile = <<EOF
function function(accessToken, context, callback) {
function fetchUserProfile(accessToken, context, callback) {
return callback(new Error("Whoops!"));
}
EOF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ resource "auth0_connection" "oauth2" {
pkce_enabled = true
scripts = {
fetchUserProfile = <<EOF
function function(accessToken, context, callback) {
function fetchUserProfile(accessToken, context, callback) {
return callback(new Error("Whoops!"));
}
EOF
Expand Down

0 comments on commit e7745b7

Please sign in to comment.