Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Documentation for variable subs #641

Merged
merged 2 commits into from
Oct 1, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ In order to use the VC OIDC authentication, a couple of extra steps are required

- A proof-request configuration needs to be registered with VC-AuthN. To do
so, the following command can be used to post a configuration requesting a BC Wallet Showcase Person credential:
- Though not implemented in this built-in config, proof-request configurations can optionally include substitution variables. Details can be found [here](docs/ConfigurationGuide.md#proof-substitution-variables)

```bash
curl -X 'POST' \
Expand Down
40 changes: 35 additions & 5 deletions demo/vue/app/frontend/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion demo/vue/app/frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
"eslint-plugin-vuetify": "^1.1.0",
"lodash": "^4.17.21",
"prettier": "^3.3.3",
"sass": "^1.78.0",
"sass": "^1.79.3",
"sass-loader": "^14.2.1",
"vue-cli-plugin-vuetify": "^2.5.8",
"vue-template-compiler": "^2.7.16",
Expand Down
147 changes: 134 additions & 13 deletions demo/vue/app/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions demo/vue/app/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@
"fs-extra": "^11.2.0",
"js-yaml": "^4.1.0",
"jsonwebtoken": "^9.0.2",
"keycloak-connect": "^25.0.5",
"keycloak-connect": "^25.0.6",
"winston": "^3.14.2",
"winston-transport": "^4.7.1"
"winston-transport": "^4.8.0"
},
"devDependencies": {
"eslint": "^8.57.0",
"eslint-config-recommended": "^4.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"nodemon": "^3.1.4",
"nodemon": "^3.1.7",
"supertest": "^7.0.0"
}
}
Loading