создайте свой вспомогательный метод действия, используя helper_method :your_action_name
class ApplicationController < ActionController::Base
def foo
# your foo logic
end
helper_method :foo
def bar
# your bar logic
end
helper_method :bar
end
Или вы также можете выполнять все действия в качестве вспомогательного метода, используя: helper :all
class ApplicationController < ActionController::Base
helper :all
def foo
# your foo logic
end
def bar
# your bar logic
end
end
В обоих случаях вы можете получить доступ к foo и bar со всех контроллеров.