coupergateway / couper-vscode

VSCode extension with syntax highlighting and auto-completion for couper config file
https://marketplace.visualstudio.com/items?itemName=couper.couperconf
MIT License
5 stars 0 forks source link

"Go to Definition" of `jwt_signing_profile` / `jwt` with `signing_ttl` #125

Open johakoch opened 1 year ago

johakoch commented 1 year ago

For label of jwt_sign() function, add "Go to Definition" functionality. Find "at" in

          access_token = jwt_sign("at", {})
...
definitions {
  jwt_signing_profile "at" {
    ...
  }
}

or in

          access_token = jwt_sign("at", {})
...
definitions {
  jwt "at" {
    signing_ttl = "60s"
    ...
  }
}