summaryrefslogtreecommitdiff
path: root/spec/controllers/projects/settings
Commit message (Collapse)AuthorAgeFilesLines
* Add latest changes from gitlab-org/gitlab@14-6-stable-eev14.6.0-rc42GitLab Bot2021-12-201-0/+11
|
* Add latest changes from gitlab-org/gitlab@14-1-stable-eev14.1.0-rc42GitLab Bot2021-07-201-0/+8
|
* Add latest changes from gitlab-org/gitlab@14-0-stable-eev14.0.0-rc42GitLab Bot2021-06-161-1/+4
|
* Add latest changes from gitlab-org/gitlab@13-12-stable-eev13.12.0-rc42GitLab Bot2021-05-192-9/+45
|
* Add latest changes from gitlab-org/gitlab@13-11-stable-eev13.11.0-rc43GitLab Bot2021-04-203-1/+24
|
* Add latest changes from gitlab-org/gitlab@13-6-stable-eev13.6.0-rc42GitLab Bot2020-11-192-11/+12
|
* Add latest changes from gitlab-org/gitlab@13-5-stable-eev13.5.0-rc42GitLab Bot2020-10-213-167/+151
|
* Add latest changes from gitlab-org/gitlab@13-4-stable-eeGitLab Bot2020-09-191-2/+5
|
* Add latest changes from gitlab-org/gitlab@13-3-stable-eeGitLab Bot2020-08-202-3/+4
|
* Add latest changes from gitlab-org/gitlab@13-2-stable-eeGitLab Bot2020-07-201-5/+95
|
* Add latest changes from gitlab-org/gitlab@13-1-stable-eeGitLab Bot2020-06-185-5/+5
|
* Add latest changes from gitlab-org/gitlab@13-0-stable-eeGitLab Bot2020-05-202-2/+192
|
* Add latest changes from gitlab-org/gitlab@12-10-stable-eeGitLab Bot2020-04-242-80/+80
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-141-4/+15
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-031-0/+8
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-031-1/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-04-011-4/+76
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-03-251-0/+88
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-282-20/+8
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-151-1/+69
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-131-0/+33
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2020-02-053-5/+5
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-12-101-5/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-141-2/+6
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-11-011-1/+2
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-181-0/+1
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-141-0/+24
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-031-0/+15
|
* Add latest changes from gitlab-org/gitlab@masterGitLab Bot2019-10-022-4/+4
|
* Add username to deploy tokensKrasimir Angelov2019-07-021-0/+20
| | | | | | | | | This new attribute is optional and used when set instead of the default format `gitlab+deploy-token-#{id}`. Empty usernames will be saved as null in the database. Related to https://gitlab.com/gitlab-org/gitlab-ce/issues/50228.
* Expose ci_default_git_depth via project APIexpose-project-git-depth-via-apiFabio Pitino2019-06-121-1/+1
| | | | | | | | | | Enable Get and Update of ci_default_git_depth for Project API. Renaming Project#default_git_depth to :ci_default_git_depth to give more context through the API usage. Add API documentation
* Add project level git depth settingKrasimir Angelov2019-06-061-0/+15
| | | | | | | | | | | | | | | | | | | | Introduce default_git_depth in project's CI/CD settings and set it to 50. Use it if there is no GIT_DEPTH variable specified. Apply this default only to newly created projects and keep it nil for old ones in order to not break pipelines that rely on non-shallow clones. default_git_depth can be updated from CI/CD Settings in the UI, must be either nil or integer between 0 and 1000 (incl). Inherit default_git_depth from the origin project when forking projects. MR pipelines are run on a MR ref (refs/merge-requests/:iid/merge) and it contains unique commit (i.e. merge commit) which doesn't exist in the other branch/tags refs. We need to add it cause otherwise it may break pipelines for old projects that have already enabled Pipelines for merge results and have git depth 0. Document new default_git_depth project CI/CD setting
* Ignore ProjectAutoDevops domain columnThong Kuah2019-05-311-1/+1
| | | | | | | | | This column is no longer used. The form was removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/24580 and other usages removed in https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/28460. Remove final usages of :domain
* Add ProjectMetricsDashboardSetting model and tableReuben Pereira2019-04-261-0/+14
| | | | | | This new table will be used to store the external_dashboard_url which allows users to add a link to their external dashboards (ex Grafana) to the Metrics dashboard.
* Merge branch '57171-operations-controller-spec-refactor' into 'master'Grzegorz Bizon2019-04-261-106/+110
|\ | | | | | | | | | | | | Refactor operations controller spec Closes #57171 See merge request gitlab-org/gitlab-ce!27558
| * Fix a bug in shared_examples definition57171-operations-controller-spec-refactorrpereira22019-04-251-1/+1
| |
| * Move shared context to top of spec filerpereira22019-04-241-60/+52
| | | | | | | | | | - Rename the shared_context - Use expect in stub_operations_update_service_returning.
| * Refactor operations controller specrpereira22019-04-221-105/+117
| | | | | | | | | | - Move specs into a shared_context so that they can be reused. - Move common specs out of a more specific context.
* | Redirect to settings page on invalid updateMatija Čupić2019-04-241-0/+9
|/
* Add some frozen string to spec/**/*.rbgfyoung2019-04-153-0/+6
| | | | | | | | | | Adds frozen string to the following: * spec/bin/**/*.rb * spec/config/**/*.rb * spec/controllers/**/*.rb xref https://gitlab.com/gitlab-org/gitlab-ce/issues/59758
* Refactor model and specReuben Pereira2019-03-011-23/+40
| | | | | | - Move some specs into contexts - Let get_slugs method take a parameter and return a specific slug. - Add rescues when using Addressable::URI.
* Remove `error_tracking` feature flagPeter Leitzen2019-01-151-24/+0
| | | | | | | We introduced the feature flag `error_tracking` to test the Sentry MVC safely. After the successful test, we remove it again.
* Implement error tracking configurationPeter Leitzen2019-01-071-11/+157
| | | | Re-use operations controller which already handles tracing settings.
* Move settings operations controller from EE to CEmove-settings-oprations-to-cePeter Leitzen2019-01-061-0/+35
| | | | | This commit prepares the structure for the upcoming feature error tracking.
* Update specs to rails5 formatblackst0ne-convert-specs-rails5-styleblackst0ne2018-12-193-10/+12
| | | | | | | | | | Updates specs to use new rails5 format. The old format: `get :show, { some: params }, { some: headers }` The new format: `get :show, params: { some: params }, headers: { some: headers }`
* Remove the project_cleanup feature flagNick Thomas2018-12-151-25/+5
|
* Remove Sidekiq::Testing in RepositoryController specDylan Griffith2018-12-071-4/+6
|
* Use BFG object maps to clean projectsNick Thomas2018-12-061-0/+31
|
* Simplify runner registration token resettingTomasz Maczukin2018-10-041-0/+13
| | | | | | | | | | | | | | | | | | | | | | | | This icommit adds several changes related to the same topic - resetting a Runner registration token: 1. On Project settings page it adds a button for resetting the registration token and it removes the Runner token field that was confusing all GitLab users. 2. On Group settings page it adds the same button for resetting the registration token. 3. On Admin Runners settings page it moves the button to the same place as in Project and Group settings and it changes slightly the page layout to make it more similar to Group and Project setting pages. 4. It refactorizes a little the partial that prints runner registration description. Thanks to this Project, Group and Admin settings of the Runner are re-using the same code to generate the button. 5. Updates the translations of changed text.
* Resolve "Rename the `Master` role to `Maintainer`" BackendMark Chao2018-07-113-5/+5
|