Skip to content

Instantly share code, notes, and snippets.

@madzhuga
Created November 14, 2017 18:14
Show Gist options
  • Save madzhuga/3086ef2d7afa6ff1ee24140a9413d127 to your computer and use it in GitHub Desktop.
Save madzhuga/3086ef2d7afa6ff1ee24140a9413d127 to your computer and use it in GitHub Desktop.
class ApplicationController < ActionController::Base
...
before_action :navigate_to_current_operation
def navigate_to_current_operation
return unless current_operation
redirect_to current_operation_path
end
...
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment