diff options
author | Sean McGivern <sean@mcgivern.me.uk> | 2016-10-12 08:22:38 +0000 |
---|---|---|
committer | Sean McGivern <sean@mcgivern.me.uk> | 2016-10-12 08:22:38 +0000 |
commit | d3a9838065ab4cd4d1519f6d201b43c9a2b12f2c (patch) | |
tree | b8f3888a8e8939547806681b917d1b58ad398e6c /config | |
parent | a0f9cff5e8244fac3290710e1cb7863ff1cb91bd (diff) | |
parent | 32186b4ab89e751d42590d2cbfbcf0c6a131bdca (diff) | |
download | gitlab-ce-d3a9838065ab4cd4d1519f6d201b43c9a2b12f2c.tar.gz |
Merge branch 'download_snippets' into 'master'
Added 'Download' button to snippet view
## What does this MR do?
Adds a `Download` button above a snippet.
## Are there points in the code the reviewer needs to double check?
## Why was this MR needed?
Requested in #22811
## Screenshots (if relevant)
![image](/uploads/59b67aa02cc601c08a18fd60c37797ed/image.png)
## Does this MR meet the acceptance criteria?
- [x] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG) entry added
- [ ] [Documentation created/updated](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/doc/development/doc_styleguide.md)
- [ ] API support added
- Tests
- [ ] Added for this feature/bug
- [ ] All builds are passing
- [ ] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html)
- [ ] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides)
- [x] Branch has no merge conflicts with `master` (if you do - rebase it please)
- [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits)
## What are the relevant issue numbers?
Closes #22811
See merge request !6720
Diffstat (limited to 'config')
-rw-r--r-- | config/routes/snippets.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/config/routes/snippets.rb b/config/routes/snippets.rb index 1949f215c66..3ca096f31ba 100644 --- a/config/routes/snippets.rb +++ b/config/routes/snippets.rb @@ -1,6 +1,7 @@ resources :snippets, concerns: :awardable do member do get 'raw' + get 'download' end end |