Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
佳 邓
Gitlab4j Api
Commits
a6b0b431
Commit
a6b0b431
authored
Oct 18, 2019
by
Gautier de Saint Martin Lacaze
Committed by
Greg Messner
Oct 17, 2019
Browse files
Update archive_builds_in_human_readable to String instead of boolean (#451)
parent
cdf87cfc
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/main/java/org/gitlab4j/api/models/Setting.java
View file @
a6b0b431
...
...
@@ -40,6 +40,14 @@ public enum Setting {
/** Allow requests to the local network from hooks and services. */
ALLOW_LOCAL_REQUESTS_FROM_HOOKS_AND_SERVICES
(
Boolean
.
class
),
/**
* Set the duration for which the jobs will be considered as old and expired.
* Once that time passes, the jobs will be archived and no longer able to be retried.
* Make it empty to never expire jobs. It has to be no less than 1 day,
* for example: 15 days, 1 month, 2 years.
*/
ARCHIVE_BUILDS_IN_HUMAN_READABLE
(
String
.
class
),
/**
* By default, we write to the authorized_keys file to support Git over SSH
* without additional configuration. GitLab can be optimized to authenticate SSH
...
...
@@ -740,7 +748,6 @@ public enum Setting {
VERSION_CHECK_ENABLED
(
Boolean
.
class
),
/* The following settings are undocumented, but are returned from the server */
ARCHIVE_BUILDS_IN_HUMAN_READABLE
(
Boolean
.
class
),
DEFAULT_PROJECT_CREATION
(
Integer
.
class
),
DOMAIN_BLACKLIST_RAW
(
String
.
class
),
DOMAIN_WHITELIST_RAW
(
String
.
class
),
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment