Skip to content

Commit

Permalink
Improve consistency of 'issues.from.source' parameter
Browse files Browse the repository at this point in the history
Signed-off-by: Maximilian Löffler <[email protected]>
  • Loading branch information
maxloeffler committed Jul 2, 2024
1 parent fb3f547 commit 8bcbc81
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -574,7 +574,7 @@ There is no way to update the entries, except for the revision-based parameters.
* [*`TRUE`*, `FALSE`]
- `issues.from.source`
* Choose from which sources the issue data on disk is read in. Multiple sources can be chosen.
* [*`github`, `jira`*]
* [*`github`*, `jira`]
- `issues.locked`
* Lock issues to prevent them from being read if not yet present when calling the getter.
* [`TRUE`, *`FALSE`*]
Expand Down
2 changes: 1 addition & 1 deletion util-conf.R
Original file line number Diff line number Diff line change
Expand Up @@ -424,7 +424,7 @@ ProjectConf = R6::R6Class("ProjectConf", inherit = Conf,
issues.from.source = list(
default = "github",
type = "character",
allowed = c("jira", "github"),
allowed = c("github", "jira"),
allowed.number = Inf
),
issues.locked = list(
Expand Down

0 comments on commit 8bcbc81

Please sign in to comment.