We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dad225e commit 31008dfCopy full SHA for 31008df
1 file changed
bin/lib/options.js
@@ -31,18 +31,18 @@ module.exports = [
31
},
32
{
33
name: 'auth',
34
- help: 'Pick an authentication strategy `tls` or `oidc`',
35
- question: 'What authentication strategy do you want to provide?',
+ help: 'Pick an authentication strategy for WebID: `tls` or `oidc`',
+ question: 'Select authentication strategy',
36
type: 'list',
37
choices: [
38
- 'TLS',
39
- 'OpenID Connect'
+ 'WebID-TLS',
+ 'WebID-OpenID Connect'
40
],
41
prompt: true,
42
- default: 'TLS',
+ default: 'WebID-TLS',
43
filter: (value) => {
44
- if (value === 'TLS') return 'tls'
45
- if (value === 'OpenID Connect') return 'oidc'
+ if (value === 'WebID-TLS') return 'tls'
+ if (value === 'WebID-OpenID Connect') return 'oidc'
46
47
when: (answers) => {
48
return answers.webid
0 commit comments