28 Aug, 2015

1 commit


21 Aug, 2015

1 commit


13 Aug, 2015

1 commit


31 Jul, 2015

1 commit


24 Jul, 2015

1 commit

  • Use these two commands inside vim:
    :!ag -l '..\/..\/..\/..\/test' | xargs perl -pi -E "s/require.*test_helper.*/require 'test_helper'/g"
    :!ag -l "require File.*'/" | xargs perl -pi -E "s/require File.*'\//require_relative '/g":e ""'"
    Braulio Bhavamitra
     

22 Feb, 2015

5 commits


19 Feb, 2015

2 commits


13 Feb, 2015

6 commits


12 Feb, 2015

2 commits


11 Feb, 2015

3 commits


10 Feb, 2015

7 commits


09 Feb, 2015

3 commits


06 Feb, 2015

1 commit


03 Feb, 2015

4 commits


02 Feb, 2015

2 commits

  • Rodrigo Souto
     
  • If the user is profile/environment admin, bypasses the permissions check
    so that he/she always has access to everything related to the profile.
    
    The absence of this feature caused many strange behaviors like env
    admins unable to access a community control panel section.
    
    This also caused many complex permission checking codes where we were
    forced to test lots of combinations instead of a straight check (e.g.
    user is env admin or user is profile admin or user has permission x or
    ...).
    
    After this change, there might still be redundant testing around the
    code, but that might be reviewed slowly.
    Rodrigo Souto