summaryrefslogtreecommitdiff
path: root/spec/features/projects/blobs
Commit message (Collapse)AuthorAgeFilesLines
...
| * Update permalink/blame buttons with line number fragment hash19742-permalink-blame-button-line-number-hash-linksEric Eastwood2017-03-131-0/+97
| | | | | | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/19742
* | New file from interface on existing branchJacopo2017-03-131-0/+107
|/ | | | | | Now you can create a new file and select a target_branch != source_branch. If the file that you want to create already exists on the target branch an error message is shown A glDropdown is used to select and create a new branch instead of a text field.
* Add keyboard shortcut to move to file permalink8082-permalink-to-fileEric Eastwood2017-02-061-0/+37
| | | | Fix https://gitlab.com/gitlab-org/gitlab-ce/issues/8082
* Merge branch 'jej-22869' into 'security'Douwe Maan2016-11-281-0/+45
Fix information disclosure in `Projects::BlobController#update` It was possible to discover private project names by modifying `from_merge_request`parameter in `Projects::BlobController#update`. This fixes that. - [ ] [CHANGELOG](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CHANGELOG.md) entry added - Tests - [x] Added for this feature/bug - [ ] All builds are passing - [x] Conform by the [merge request performance guides](http://docs.gitlab.com/ce/development/merge_request_performance_guidelines.html) - [x] Conform by the [style guides](https://gitlab.com/gitlab-org/gitlab-ce/blob/master/CONTRIBUTING.md#style-guides) - [x] [Squashed related commits together](https://git-scm.com/book/en/Git-Tools-Rewriting-History#Squashing-Commits) https://gitlab.com/gitlab-org/gitlab-ce/issues/22869 See merge request !2023