summaryrefslogtreecommitdiff
path: root/doc/api/settings.md
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch 'sh-remove-koding' into 'master'Douwe Maan2018-10-151-6/+0
|\ | | | | | | | | | | | | Remove Koding integration and documentation Closes #39697 See merge request gitlab-org/gitlab-ce!22334
| * Remove Koding integration and documentationStan Hu2018-10-121-6/+0
| | | | | | | | | | | | This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
* | Docs: fix table on API settingsMarcia Ramos2018-10-151-0/+4
|/
* Remove Git circuit breakerZeger-Jan van de Weg2018-10-101-5/+0
| | | | | | | Was introduced in the time that GitLab still used NFS, which is not required anymore in most cases. By removing this, the API it calls will return empty responses. This interface has to be removed in the next major release, expected to be 12.0.
* Remove background job throttling feature51509-remove-sidekiq-limit-fetchValery Sizov2018-09-241-3/+0
| | | | We remove this feature as it never worked properly
* Correct grammar (setup to set-up) in DocsMarcel Amirault2018-09-211-1/+1
|
* Update api/settings.mdMarcel Amirault2018-09-031-102/+134
| | | | Fix spacing, typos, add missing settings, and remove deprecated ones.
* Add ability suppress the global "You won't be able [use] SSH" messageÆvar Arnfjörð Bjarmason2018-08-081-2/+6
| | | | | | | | | | | | | This fixes gitlab-org/gitlab-ce#49953, as noted in the documentation this feature is intended to be used when SSH certificates are enabled. Then this warning becomes not only pointless, but also misleading. This builds on top of gitlab-org/gitlab-ce!21009 since both need to modify the same documentation, which avoids a merge conflict. See also the gitlab-org/gitlab-ce#49218 issue and associated merge request.
* Add instance statistics settings to APIBob Van Landuyt2018-07-271-2/+5
|
* Revert "Merge branch '41416-making-instance-wide-data-tools-more-accessible' ↵Sean McGivern2018-07-271-5/+2
| | | | | into 'master'" This reverts merge request !20679
* Add instance statistics settings to APIBob Van Landuyt2018-07-271-2/+5
|
* Add documentation for manifest import featureDmitriy Zaporozhets2018-07-111-1/+1
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* docMark Chao2018-06-061-1/+1
|
* Merge branch '46758-fallout-of-cacheable-attribute' into 'master'Douwe Maan2018-05-291-2/+5
|\ | | | | | | | | | | | | Ensure ApplicationSetting#performance_bar_allowed_group_id is properly set when retrieved from cache Closes #46758 See merge request gitlab-org/gitlab-ce!19144
| * Ensure ApplicationSetting#performance_bar_allowed_group_id is properly set ↵Rémy Coutable2018-05-291-2/+5
| | | | | | | | | | | | when retrieved from cache Signed-off-by: Rémy Coutable <remy@rymai.me>
* | include groups in descriptionDavin Walker2018-05-281-1/+1
|/
* Store application wide termsBob Van Landuyt2018-05-041-0/+6
| | | | | | | | This allows admins to define terms in the application settings. Every time the terms are adjusted, a new version is stored and becomes the 'active' version. This allows tracking which specific version was accepted by a user.
* Update settings.mdGauthier Wallet2018-01-041-1/+1
|
* Move the circuitbreaker check out in a separate processbvl-circuitbreaker-processBob Van Landuyt2017-12-081-2/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | Moving the check out of the general requests, makes sure we don't have any slowdown in the regular requests. To keep the process performing this checks small, the check is still performed inside a unicorn. But that is called from a process running on the same server. Because the checks are now done outside normal request, we can have a simpler failure strategy: The check is now performed in the background every `circuitbreaker_check_interval`. Failures are logged in redis. The failures are reset when the check succeeds. Per check we will try `circuitbreaker_access_retries` times within `circuitbreaker_storage_timeout` seconds. When the number of failures exceeds `circuitbreaker_failure_count_threshold`, we will block access to the storage. After `failure_reset_time` of no checks, we will clear the stored failures. This could happen when the process that performs the checks is not running.
* Allow password authentication to be disabled entirelyMarkus Koller2017-11-231-3/+4
|
* Clarify wording of protected branch settings for the default branchSean McGivern2017-11-201-1/+1
| | | | | No-one is allowed to force push to a protected branch, or delete it. That's correct in the documentation, but was wrong in the drop-down.
* Allow configuring new circuitbreaker settings from the UI and APIBob Van Landuyt2017-10-231-0/+2
|
* Allow configuring the circuitbreaker through the API and UIBob Van Landuyt2017-10-171-0/+4
|
* Update the settings api documentationbvl-update-settings-api-docsBob Van Landuyt2017-10-131-32/+83
|
* Rework the permissions model for SSH key restrictionsNick Thomas2017-08-301-15/+12
| | | | | | | | | | | | | | | `allowed_key_types` is removed and the `minimum_<type>_bits` fields are renamed to `<tech>_key_restriction`. A special sentinel value (`-1`) signifies that the key type is disabled. This also feeds through to the UI - checkboxes per key type are out, inline selection of "forbidden" and "allowed" (i.e., no restrictions) are in. As with the previous model, unknown key types are disallowed, even if the underlying ssh daemon happens to support them. The defaults have also been changed from the lowest known bit size to "no restriction". So if someone does happen to have a 768-bit RSA key, it will continue to work on upgrade, at least until the administrator restricts them.
* Add settings for minimum key strength and allowed key typeNick Thomas2017-08-301-2/+17
| | | | | | | | This is an amalgamation of: * Cory Hinshaw: Initial implementation !5552 * Rémy Coutable: Updates !9350 * Nick Thomas: Resolve conflicts and add ED25519 support !13712
* Remove deprecated `repository_storage` attributebvl-add-all-settings-to-apiBob Van Landuyt2017-07-271-3/+1
| | | | In favor of the new `repository_storages`
* Fixes needed when GitLab sign-in is not enabledRobin Bobbitt2017-07-131-3/+3
| | | | | | | | | When sign-in is disabled: - skip password expiration checks - prevent password reset requests - don’t show Password tab in User Settings - don’t allow login with username/password for Git over HTTP requests - render 404 on requests to Profiles::PasswordsController
* update API doc with +API (h1 heading)Marcia Ramos2017-05-101-1/+1
|
* Introduce "polling_interval_multiplier" as application settingAdam Niedzielski2017-04-031-2/+5
| | | | | Implement module for setting "Poll-Interval" response header. Return 429 in ETag caching middleware when polling is disabled.
* Change project count limit from 10 to 100000rfr-20170307-change-default-project-number-limitRegis Freyd2017-03-071-3/+3
|
* Expose ApplicationSetting visibility settings as StringToon Claes2017-03-021-8/+11
| | | | | | | | Use strings for the ApplicationSetting properties: - restricted_visibility_levels - default_project_visibility - default_snippet_visibility - default_group_visibility
* Use v4 endpoint in API docsapi-v4-docRobert Schilling2017-03-011-2/+2
|
* Introduce maximum session time for terminal websocket connectionterminal-max-session-timeAdam Niedzielski2017-02-061-2/+5
| | | | | Store the value in application settings. Expose the value to Workhorse.
* Add support for PlantUML diagrams in Asciidoc.Horacio Sanson2017-01-121-2/+8
| | | | | | | | | | | | | | | | | | | | | This MR enables rendering of PlantUML diagrams in Asciidoc documents. To add a PlantUML diagram all we need is to include a plantuml block like: ``` [plantuml, id="myDiagram", width="100px", height="100px"] -- bob -> alice : ping alice -> bob : pong -- ``` The plantuml block is substituted by an HTML img element with *src* pointing to an external PlantUML server. This MR also add a PlantUML integration section to the Administrator -> Settings page to configure the PlantUML rendering service and to enable/disable it. Closes: #17603
* Grapify the settings APIgrapify-settings-apiRobert Schilling2016-12-291-0/+1
|
* Document multiple repository storage pathsNick Thomas2016-11-041-1/+3
|
* Expose the Koding application settings in the APIkoding-setting-apiDJ Mountney2016-09-291-3/+9
| | | | This will allow the Koding app to enable the integration itself once is has authorized an admin user using the application secrets.
* docs: fix typo, it should refer to `domain_blacklist_enabled` settingBenjamin Schwarze2016-08-191-1/+1
|
* use long options for curl examples in API documentation (!5703)winniehell2016-08-091-2/+2
|
* Reorder allowed params for `ApplicationSetting` and add more details to docs.email-domain-blacklistPatricio Cano2016-07-191-0/+6
|
* Refactor and rename `restricted_signup_domains` to `domain_whitelist` to ↵Patricio Cano2016-07-181-3/+3
| | | | better conform to its behavior and newly introduced behavior.
* Rebasing caused `enabled_git_access_protocol` to become plural. Fixed here.Patricio Cano2016-07-051-1/+1
|
* Add setting that allows admins to choose which Git access protocols are enabledPatricio Cano2016-07-051-0/+1
|
* Add Application Setting to configure default Repository Path for new projectsshards-configAlejandro Rodríguez2016-06-291-2/+5
|
* docs: fix default_branch_protection defaultIan Kelling2016-06-051-1/+1
|
* Add Application Setting to configure Container Registry token expire delay ↵Kamil Trzcinski2016-05-311-2/+5
| | | | (default 5min)
* Remove "Congratulations!" tweet button on newly-created project.connorshea2016-03-311-3/+0
| | | | | | | I’ve removed everything related to the feature based on this commit: ce08f919f34fd8849834365 Resolves #10857.
* Refactor settings API documentation [ci skip]doc_refactor_settings_apiAchilleas Pipinellis2016-01-181-44/+54
|
* Fix typos in all docs [skip ci]Anton Davydov2015-11-241-1/+1
|