Guest User

Untitled

a guest
Feb 21st, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.32 KB | None | 0 0
  1. # app/controllers/application.rb
  2.  
  3. class ApplicationController < ActionController::Base
  4. before_filter :modify_protocol
  5.  
  6. private
  7.  
  8. def modify_protocol
  9. returning(true) do
  10. if Rails.configuration.protocol_modifier
  11. request.extend(Rails.configuration.protocol_modifier)
  12. end
  13. end
  14. end
  15. end
Add Comment
Please, Sign In to add comment