fluentd-ui/app/controllers/welcome_controller.rb
uu59 23a30452e4 Fix route name fluentd -> daemon by sed
$ git grep --name-only -E "[a-z0-9A-Z_]*fluentd_[a-zA-Z0-9_]*path" app/  | xargs gsed -i -E 's#([a-z0-9A-Z_]*)fluentd([a-zA-Z0-9_]*path)#\1daemon\2#g'
2014-07-24 15:28:04 +09:00

6 lines
97 B
Ruby

class WelcomeController < ApplicationController
def home
redirect_to daemon_path
end
end