mirror of
https://github.com/wahyd4/gitlabhq.git
synced 2026-08-09 04:36:11 +10:00
Merge branch 'issue_3076' into 'master'
Fix problem with projects ending with .keys #3076 Closes #3076 Move route `:username.keys` below project's routes. This allow project's to handle names ending with `.keys` See merge request !1883
This commit is contained in:
@@ -15,6 +15,7 @@ v 8.4.0 (unreleased)
|
||||
- Add "Frequently used" category to emoji picker
|
||||
- Add CAS support (tduehr)
|
||||
- Add link to merge request on build detail page
|
||||
- Fix: Problem with projects ending with .keys (Jose Corcuera)
|
||||
- Revert back upvote and downvote button to the issue and MR pages
|
||||
- Swap position of Assignee and Author selector on Issuables (Zeger-Jan van de Weg)
|
||||
- Add system hook messages for project rename and transfer (Steve Norman)
|
||||
|
||||
+3
-3
@@ -52,9 +52,6 @@ Rails.application.routes.draw do
|
||||
API::API.logger Rails.logger
|
||||
mount API::API => '/api'
|
||||
|
||||
# Get all keys of user
|
||||
get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }
|
||||
|
||||
constraint = lambda { |request| request.env['warden'].authenticate? and request.env['warden'].user.admin? }
|
||||
constraints constraint do
|
||||
mount Sidekiq::Web, at: '/admin/sidekiq', as: :sidekiq
|
||||
@@ -686,5 +683,8 @@ Rails.application.routes.draw do
|
||||
end
|
||||
end
|
||||
|
||||
# Get all keys of user
|
||||
get ':username.keys' => 'profiles/keys#get_keys' , constraints: { username: /.*/ }
|
||||
|
||||
get ':id' => 'namespaces#show', constraints: { id: /(?:[^.]|\.(?!atom$))+/, format: /atom/ }
|
||||
end
|
||||
|
||||
@@ -80,6 +80,7 @@ describe ProjectsController, 'routing' do
|
||||
|
||||
it 'to #show' do
|
||||
expect(get('/gitlab/gitlabhq')).to route_to('projects#show', namespace_id: 'gitlab', id: 'gitlabhq')
|
||||
expect(get('/gitlab/gitlabhq.keys')).to route_to('projects#show', namespace_id: 'gitlab', id: 'gitlabhq.keys')
|
||||
end
|
||||
|
||||
it 'to #update' do
|
||||
|
||||
Reference in New Issue
Block a user