Skip to content

Instantly share code, notes, and snippets.

@justqyx
Forked from jhjguxin/application.rb
Last active December 17, 2015 09:58
Show Gist options
  • Save justqyx/5590904 to your computer and use it in GitHub Desktop.
Save justqyx/5590904 to your computer and use it in GitHub Desktop.
#userful gem [rack-p3p](https://github.com/hoopla/rack-p3p)
# [ie_iframe_cookies](https://github.com/grosser/ie_iframe_cookies)
# encoding: utf-8
class ApplicationController < ActionController::Base
protect_from_forgery
before_filter :set_p3p
def set_p3p
headers['P3P'] = "policyref=\"/w3c/p3p.xml\", CP=\"ALL DSP COR CURa ADMa DEVa TAIa OUR BUS IND UNI COM NAV INT\""
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment