Skip to content

Commit

Permalink
[webui] Make group request datatables work
Browse files Browse the repository at this point in the history
for groups with a dot in the title.
Fix #4021.
  • Loading branch information
ChrisBr committed Oct 16, 2017
1 parent ec59c15 commit f8c3b39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/api/config/routes.rb
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ def self.public_or_about_path?(request)
end

controller 'webui/groups/bs_requests' do
get 'groups/(:title)/requests' => :index, as: 'group_requests'
get 'groups/(:title)/requests' => :index, constraints: {:title => /[^\/]*/}, as: 'group_requests'
end

controller 'webui/users/rss_tokens' do
Expand Down

0 comments on commit f8c3b39

Please sign in to comment.