Skip to content

Commit

Permalink
fix: Smaller fix
Browse files Browse the repository at this point in the history
  • Loading branch information
dploeger committed Nov 18, 2024
1 parent d78c828 commit 1c69c92
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions lib/DefaultOptions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,31 +9,34 @@ export class DefaultOptions extends Options {
description: 'URL to your Confluence instance',
required: true,
})
confluenceUrl: string
public confluenceUrl: string

@option({
name: 'user',
flag: 'u',
description: 'Username for checking all confluence documents',
required: false,
default: '',
})
confluenceUser = ''
public confluenceUser: string

@option({
name: 'password',
flag: 'p',
description: 'Password for the user',
required: false,
default: '',
})
confluencePassword = ''
public confluencePassword: string

@option({
name: 'token',
flag: 't',
description: 'Personal Access Token for the user. If set user and password will be ignored',
required: false,
default: '',
})
confluencePersonalAccessToken = ''
public confluencePersonalAccessToken: string

@option({
description: 'Log-Level to use (trace, debug, verbose, info, warn, error)',
Expand Down

0 comments on commit 1c69c92

Please sign in to comment.