summaryrefslogtreecommitdiff
path: root/app/helpers/gitlab_routing_helper.rb
Commit message (Collapse)AuthorAgeFilesLines
* Fixed tests, renamed files and methodsJose Ivan Vargas2017-02-061-0/+4
|
* Changed the controller/route name to 'ci/cd' and renamed the corresponding filesJose Ivan Vargas2017-02-061-1/+1
| | | | Added tests to verify the access policy to the new controller
* Corrected code style and titlesJose Ivan Vargas2017-01-181-0/+1
|
* Moved the webhooks and services gear options to a single one called integrationsJose Ivan Vargas2017-01-181-0/+3
|
* Moved the members (project_members)option to a single controller called membersJose Ivan Vargas2017-01-031-0/+5
| | | | | | | This controller is going to contain both the project members and groups options for the settings gear. Generated the route and modified the routing to point to the new members setting path
* API: Endpoint to expose personal snippets as /snippetsGuyzmo2016-12-011-0/+5
| | | | | | | | | | Adding the necessary API for the new /snippets Restful resource added with this commit. Added a new Grape class `Snippets`, as well as a `PersonalSnippet` entity. Issue: #20042 Merge-Request: !6373 Signed-off-by: Guyzmo <guyzmo+gitlab+pub@m0g.net>
* add link to build's pipeline within build page headerMike Greiling2016-11-101-0/+4
|
* Add back the space which Sublime can't easily tell:Lin Jen-Shin2016-10-141-1/+1
| | | | | | | | Failed build: https://gitlab.com/gitlab-org/gitlab-ce/builds/5116496 Reason why I can't see this: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16958250
* Use the same style in the same file, feedback:Lin Jen-Shin2016-10-141-20/+4
| | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16957939
* Introduce more GitLab routing helpers, feedback:Lin Jen-Shin2016-10-141-0/+32
| | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/6019#note_16852207
* Merge branch 'and-you-get-awards' into 'master' Rémy Coutable2016-09-211-0/+8
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | And Snippets get awards ## What does this MR do? Makes snippets more awesome, by making them awardables ## Why was this MR needed? Because Snippets were left behind. ## What are the relevant issue numbers? Closes #17878 See merge request !4456
| * Fix tests for Snippets toggling awardsZ.J. van de Weg2016-09-191-0/+8
| | | | | | | | Also incorporate feedback
* | Scope environments to projectlimit-number-of-shown-environmentsKamil Trzcinski2016-09-211-0/+4
| |
* | Implement Cycle Analytics frontend.Fatih Acet2016-09-151-0/+4
|/
* Path could also have slashes! Feedback:Lin Jen-Shin2016-08-241-2/+3
| | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14347729
* Use path rather than URL because it should work for http 302:Lin Jen-Shin2016-08-181-4/+4
| | | | | Feedback: https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_14035941
* Use switch case in a helper, feedback:Lin Jen-Shin2016-08-171-0/+15
| | | | https://gitlab.com/gitlab-org/gitlab-ce/merge_requests/5142#note_13988401
* Merge branch 'environments-and-deployments' into 'master' Rémy Coutable2016-06-151-0/+4
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add environments and deployments This MR is a continuation of https://gitlab.com/gitlab-org/gitlab-ce/issues/17009. The current implementation is as follow: 1. We have two new tables: `environments` and `deployments`. 2. We have a new tab: `Environments` under `Pipelines` where you can see all you environments and add a new one. 3. We add a new option to `.gitlab-ci.yml` to track where we should create a deployment for environment. 4. If environment in `.gitlab-ci.yml` is specified it will create a deployment. **If environment does not exist it will be created.** (this got changed) 5. The deployment is always successful and shows the time of the action, in that case a build that presumably should do deployment. In the future we could extend deployment with statuses: success, failure. We could extend deployments with information that this is partial or full deployment. 6. User have to create environments that he will track first. 7. User can remove environments. 8. User can retry/rollback past deployment (in that case we retry past build). The new build when succeeds it will create a new deployment. 9. Currently environment have only one parameter: `name`. In the future it should have: `variables`, `credentials` and possibly `runners` and maybe other resources. 10. Currently deployment have this parameters: `sha`, `ref`, `deployable (in this case a build)`, `user (who triggered a deployment)`, `created_at`. The `.gitlab-ci.yml`: ``` deploy to production: stage: deploy script: dpl travis... environment: production ``` What needs to be done: - [x] Write initial implementation - [x] Improve implementation (@ayufan) - [x] Write tests (@ayufan) - [x] Improve UX of the forms (cc @markpundsack) - reviewed by @markpundsack - [x] Improve implementation of the views (cc @jschatz1) - done by @iamphill - [x] Write .gitlab-ci.yml documentation for `environments` - done by @ayufan - [ ] Write user documentation (@ayufan and @markpundsack) See merge request !4605
| * commit statusKamil Trzcinski2016-06-101-0/+4
| |
* | UI and copywriting improvements13948-access-request-to-projects-and-groupsRémy Coutable2016-06-141-12/+65
|/ | | | | | | | | + Move 'Edit Project/Group' out of membership-related partial + Show the access request buttons only to logged-in users + Put the request access buttons out of in a more visible button + Improve the copy in the #remove_member_message helper Signed-off-by: Rémy Coutable <remy@rymai.me>
* Fix CI testsKamil Trzcinski2016-05-121-1/+1
|
* WIPKamil Trzcinski2016-05-081-2/+2
|
* Added docker registry viewKamil Trzcinski2016-05-041-0/+4
|
* Cleanup changesKamil Trzcinski2016-04-131-8/+0
|
* Use Ci::Commit as PipelineKamil Trzcinski2016-04-111-0/+12
|
* Ensure "Remove Source Branch" button is not shown when branch is being ↵Rubén Dávila2015-12-041-1/+1
| | | | deleted. #3583
* Added builds viewKamil Trzcinski2015-10-141-0/+4
|
* Move runners page to project settingsDmitriy Zaporozhets2015-09-251-0/+8
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Add page titles to header for group and projectDmitriy Zaporozhets2015-09-141-0/+8
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Move project activity to separate tab. Add more features to project home pageDmitriy Zaporozhets2015-07-071-0/+4
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Refactor issue and merge request sidebarDmitriy Zaporozhets2015-06-251-0/+8
| | | | Signed-off-by: Dmitriy Zaporozhets <dmitriy.zaporozhets@gmail.com>
* Better looking milestone listsDmitriy Zaporozhets2015-04-011-0/+4
|
* Fix project issues and merge requests pagesDmitriy Zaporozhets2015-03-191-1/+0
|
* Enforce restricted visibilities for snippetsVinnie Okada2015-03-081-1/+2
| | | | | | Add new service classes to create and update project and personal snippets. These classes are responsible for enforcing restricted visibility settings for non-admin users.
* Added comment notification events to HipChat and Slack services.Stan Hu2015-03-061-0/+4
| | | | | | | | | Supports four different event types all bundled under the "note" event type: - comments on a commit - comments on an issue - comments on a merge request - comments on a code snippet
* Fix broken `project_url` routing when protected branches are accessed with ↵Stan Hu2015-03-011-0/+16
| | | | an empty repo
* Add explanation to routing methodDmitriy Zaporozhets2015-02-251-0/+13
|
* Introduce shortcuts for routing helpersDmitriy Zaporozhets2015-02-251-0/+18