1. 24 5月, 2016 1 次提交
  2. 20 4月, 2016 1 次提交
  3. 23 2月, 2016 1 次提交
  4. 22 2月, 2016 2 次提交
  5. 05 1月, 2016 1 次提交
  6. 07 12月, 2015 1 次提交
    • E
      Change the `protect_from_forgery` prepend default to `false` · 39794037
      eileencodes 提交于
      Per this comment
      https://github.com/rails/rails/pull/18334#issuecomment-69234050 we want
      `protect_from_forgery` to default to `prepend: false`.
      
      `protect_from_forgery` will now be insterted into the callback chain at the
      point it is called in your application. This is useful for cases where you
      want to `protect_from_forgery` after you perform required authentication
      callbacks or other callbacks that are required to run after forgery protection.
      
      If you want `protect_from_forgery` callbacks to always run first, regardless of
      position they are called in your application, then you can add `prepend: true`
      to your `protect_from_forgery` call.
      
      Example:
      
      ```ruby
      protect_from_forgery prepend: true
      ```
      39794037
  7. 26 11月, 2015 1 次提交
  8. 05 9月, 2015 1 次提交
  9. 25 8月, 2015 1 次提交
  10. 24 8月, 2015 1 次提交
  11. 18 7月, 2015 1 次提交
    • P
      Stop using deprecated `render :text` in test · 8cb8ce98
      Prem Sichanugrist 提交于
      This will silence deprecation warnings.
      
      Most of the test can be changed from `render :text` to render `:plain`
      or `render :body` right away. However, there are some tests that needed
      to be fixed by hand as they actually assert the default Content-Type
      returned from `render :body`.
      8cb8ce98
  12. 09 7月, 2015 1 次提交
  13. 28 5月, 2015 1 次提交
  14. 26 4月, 2015 1 次提交
  15. 13 2月, 2015 1 次提交
  16. 01 2月, 2015 1 次提交
  17. 29 1月, 2015 1 次提交
  18. 09 1月, 2015 1 次提交
  19. 20 8月, 2014 1 次提交
  20. 17 6月, 2014 2 次提交
  21. 16 6月, 2014 1 次提交
  22. 28 5月, 2014 1 次提交
  23. 06 5月, 2014 1 次提交
  24. 18 4月, 2014 2 次提交
  25. 05 3月, 2014 1 次提交
  26. 18 12月, 2013 2 次提交
  27. 19 9月, 2013 1 次提交
  28. 09 2月, 2013 1 次提交
  29. 23 1月, 2013 1 次提交
  30. 06 1月, 2013 1 次提交
  31. 13 9月, 2012 1 次提交
  32. 31 5月, 2012 1 次提交
  33. 29 3月, 2012 3 次提交
  34. 16 3月, 2012 1 次提交