summaryrefslogtreecommitdiff
path: root/config/routes.rb
Commit message (Collapse)AuthorAgeFilesLines
* Modified route to nest under -Aishwarya Subramanian2019-08-271-4/+1
|
* Added routes for trial registration apiAishwarya Subramanian2019-08-261-0/+4
|
* Back porting Username suggestion API changesAishwarya Subramanian2019-08-201-0/+1
|
* Load search result counts asynchronouslyMarkus Koller2019-08-121-0/+1
| | | | | | Querying all counts for the different search results in the same request led to timeouts, so we now only calculate the count for the *current* search results, and request the others in separate asynchronous calls.
* Adds chaos endpoints to Sidekiqan-sidekiq-chaosAndrew Newdigate2019-07-181-1/+1
| | | | | This allows the chaos endpoints to be invoked in Sidekiq so that this environment can be tested for resilience.
* Remove obsolete chaos routesremove-obsolete-chaos-routesLuke Bennett2019-07-131-7/+0
|
* Port EE analytics routegroup-analytics-frameLuke Bennett2019-07-111-0/+13
|
* Merge branch 'improve-chaos-controller' into 'master'Stan Hu2019-07-111-5/+8
|\ | | | | | | | | | | | | Add `db_spin` and refactor ChaosController Closes #64425 See merge request gitlab-org/gitlab-ce!30559
| * Add `db_spin` and refactor ChaosControllerimprove-chaos-controllerKamil Trzciński2019-07-111-5/+8
| |
* | Add endpoint to move multiple issues35757-move-issues-in-boards-pderichsPatrick Derichs2019-07-111-1/+5
|/ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add specs for new endpoint to move multiple issues. Add changelog entry Just check the first issue for the ability to move / update Add specs for exceeding limits and malformed requests Changed name of shared examples Change title of changelog entry Use %i instead of %w Check permission to update issue on project instead of board Use admin_issue permission to check for issue move ability Changed variable name to avoid shadow issue_params method Rename route to bulk_move Change route definition Check permissions for each issue Combine methods for parameters permit check Remove extra context Change description of context Check param for type Array Add unit tests to MoveService Use before_action for permission check Use set instead of let! Use let's instead of set
* Delineate additional EE-only routesrs-ee-only-routes-2Robert Speicher2019-06-261-8/+19
|
* Copy routes from EERobert Speicher2019-06-261-3/+16
| | | | | This ensures all routes are defined in both CE and EE, with EE-specific routes being wrapped in `Gitlab.ee` blocks.
* Add pages domains acme ordersVladimir Shushlin2019-06-061-0/+2
| | | | | | | | | | | | | | | | | | | | | | | Extract acme double to helper Create ACME challanges for pages domains * Create order & challange through API * save them to database * request challenge validation We're saving order and challenge as one entity, that wouldn't be correct if we would order certificates for several domains simultaneously, but we always order certificate per domain Add controller for processing acme challenges redirected from pages Don't save acme challenge url - we don't use it Validate acme challenge attributes Encrypt private_key in acme orders
* DELETE clusters/:id/:application endpointThong Kuah2019-04-291-0/+1
| | | | Add endpoint to delete/uninstall a cluster application
* Filter merge requests by target branchHiroyuki Sato2019-03-091-0/+1
|
* Creates Clusterss::ApplciationsController update endpointJoão Cunha2019-03-051-0/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - Creates new route - Creates new controller action - Creates call stack: Clusterss::ApplciationsController calls --> Clusters::Applications::UpdateService calls --> Clusters::Applications::ScheduleUpdateService calls --> ClusterUpdateAppWorker calls --> Clusters::Applications::PatchService --> ClusterWaitForAppInstallationWorker DRY req params Adds gcp_cluster:cluster_update_app queue Schedule_update_service is uneeded Extract common logic to a parent class (UpdateService will need it) Introduce new UpdateService Fix rescue class namespace Fix RuboCop offenses Adds BaseService for create and update services Remove request_handler code duplication Fixes update command Move update_command to ApplicationCore so all apps can use it Adds tests for Knative update_command Adds specs for PatchService Raise error if update receives an unistalled app Adds update_service spec Fix RuboCop offense Use subject in favor of go Adds update endpoint specs for project namespace Adds update endpoint specs for group namespace
* Merge branch '52767-more-chaos-for-gitlab' into 'master'Sean McGivern2018-11-071-0/+7
|\ | | | | | | | | | | | | Add more chaos to GitLab Closes #53362 and #52767 See merge request gitlab-org/gitlab-ce!22746
| * Add documentation, secure routes, etcAndrew Newdigate2018-11-011-4/+6
| |
| * Leak memory, spin cpu and kill the processAndrew Newdigate2018-11-011-0/+3
| |
| * Adding chaos to GitLab through chaos endpointsAndrew Newdigate2018-11-011-0/+2
| |
* | Resolve controller sharing concernThong Kuah2018-11-011-15/+13
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Use ClustersController as base while having Projects::ClustersController to inform what `clusterable` is. Thanks @ayufan for the great suggestion ! - View changes to work with new approach - Fix javascript for new approach - Fix feature specs for new approach - Fix QA
* | Abstract out project out of ClustersControllerThong Kuah2018-11-011-14/+16
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | To the extent possible swap out `project` with `clusterable` - Abstract paths for showing cluster or clusters. This will allow us to swap in alternative paths for group level cluster - Push :project_id and :namespace_id params from the URL to the POST body. - Create a nice helper for to generate links for the destroy action For some reason, spec :project_id and :namespace_id param are not going through `to_param` for a JSON format. Manually call `to_param` to fix specs. - Move :layout to BaseController
* | Convert clusters to use a top-level controllerThong Kuah2018-11-011-0/+17
|/ | | | | | | | | | | | | | | | | | | | | | | | In preparation so that we can create both cluster attached to project and cluster attached to group. - Move ClustersController to top level - Move Clusters::ApplicationsController to top-level too - Creates a Clusters::BaseController to share common functions - Do not rely on @project ivar. Anything could set the ivar. - Fix Vue page components due to new data-page value Because of the controller change we have gone from `projects:clusters:new` to `clusters:new`, so we need to update the file location of the page components. There is somewhere a function that will convert data-page to a file location. On that note, projects/clusters/gcp/new/, translate to Projects::Clusters::Gcp#new doesn't exist so replace that with clusters/create_gcp/ and clusters/create_user/
* Backport CE route changes for Ops Dashboard in EE5781-operations-homepage-mvc-routesPeter Leitzen2018-10-271-0/+1
|
* Extract EE only oauth routes and add testsLin Jen-Shin2018-10-261-0/+2
|
* Remove Koding integration and documentationStan Hu2018-10-121-3/+0
| | | | | | This integration no longer works and does not appear to be supported. Closes https://gitlab.com/gitlab-org/gitlab-ce/issues/39697
* Remove Git circuit breakerZeger-Jan van de Weg2018-10-101-1/+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.
* Fix route deprecation warnings in rails 5Jan Provaznik2018-09-121-1/+1
|
* Backport of gitlab-org/gitlab-ee!6876ce-6752-jira-branchesMario de la Ossa2018-08-201-0/+7
|
* Merge branch 'master' into ↵Luke Bennett2018-07-311-0/+1
|\ | | | | | | | | | | | | '41416-making-instance-wide-data-tools-more-accessible' # Conflicts: # app/models/application_setting.rb # lib/api/settings.rb
| * Use /-/health instead of breaking /-/livenessStan Hu2018-07-281-1/+2
| |
| * Simplify /-/liveness check to avoid connecting to the databaseStan Hu2018-07-281-1/+1
| | | | | | | | | | | | | | | | The previous implementation would hit the database each time and provide a dummy response. If the database goes down, this means all application workers would be taken out of service. Simplify this check by using a Rails middleware that intercepts this endpoint and returns a 200 response.
* | Scope instance_statistics to dashLuke Bennett2018-07-271-1/+2
| |
* | Create instance_statistics namespace and move convdev index and cohorts to itLuke Bennett2018-07-271-0/+1
|/
* Revert "Merge branch '41416-making-instance-wide-data-tools-more-accessible' ↵Sean McGivern2018-07-271-2/+0
| | | | | into 'master'" This reverts merge request !20679
* Scope instance_statistics to dashLuke Bennett2018-07-261-1/+2
|
* Create instance_statistics namespace and move convdev index and cohorts to itLuke Bennett2018-07-261-0/+1
|
* Redirect favicon.(png|ico) to actual favicon asset or uploaddm-favicon-redirectDouwe Maan2018-06-181-0/+6
|
* Move IDE to CEPhil Hughes2018-03-201-0/+3
| | | | This also makes the IDE generally available
* Show Ajax requests in performance barSean McGivern2018-03-191-1/+1
| | | | | | | | | | | | | | | | | But first, rewrite the performance bar in Vue: 1. Remove the peek-host gem and replace it with existing code. This also allows us to include the host in the JSON response, rather than in the page HTML. 2. Leave the line profiler parts as here-be-dragons: nicer would be a separate endpoint for these, so we could use them on Ajax requests too. 3. The performance bar is too fiddly to rewrite right now, so apply the same logic to that. Then, add features! All requests made through Axios are able to be tracked. To keep a lid on memory usage, only the first two requests for a given URL are tracked, though. Each request that's tracked has the same data as the initial page load, with the exception of the performance bar and the line profiler, as explained above.
* Remove IDE from CEPhil Hughes2018-03-021-2/+0
|
* Rename Callout to UserCalloutMatija Čupić2018-02-021-2/+2
|
* Refactor CalloutsControllerMatija Čupić2018-02-021-3/+1
|
* Move Callouts route to - pathMatija Čupić2018-01-271-5/+5
|
* Implement Callouts controllerMatija Čupić2018-01-261-0/+5
|
* Resolve "Decouple multi-file editor from file list"Tim Zallmann2017-12-211-0/+2
|
* Move the circuitbreaker check out in a separate processbvl-circuitbreaker-processBob Van Landuyt2017-12-081-0/+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.
* Speed up Unicorn specs by using a dummy Rack application instead of GitLabNick Thomas2017-11-221-2/+0
|
* Move global boards routes under "-" scopeValery Sizov2017-10-131-13/+13
|
* Create Kubernetes cluster on GKE from k8s serviceShinya Maeda2017-09-251-0/+1
|