d6cd7006ae
Navigating to the "Members" section of a project would omit the relative URL root path. Fix the redirection and eliminate the need for a redirection in the first place. Fix other redirections failing to work with relative roots
5 lines
87 B
Ruby
5 lines
87 B
Ruby
namespace :ci do
|
|
resource :lint, only: [:show, :create]
|
|
|
|
root to: redirect('')
|
|
end
|