07 Aug, 2015
1 commit
06 Aug, 2015
2 commits
-
Signed-off-by: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>
-
Signed-off-by: Luciano Prestes Cavalcanti <lucianopcbr@gmail.com>
10 Jul, 2015
2 commits
-
Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Eduardo Vital <vitaldu@gmail.com>
-
Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Eduardo Vital <vitaldu@gmail.com>
04 Jul, 2015
1 commit
29 Jun, 2015
1 commit
-
Move users api mountpoint to people and also deal with permissions issues.
25 Jun, 2015
2 commits
20 Jun, 2015
1 commit
-
scopes are defined as class methods on the singleton of the class they were named instead of the class that calls them, so regardless if they are called by Enterprise or Community, they were defined on Organization, so #visible_for_person() always gives us `WHERE "profiles"."type" IN ('Organization', 'Enterprise', 'Community')` This wouldn't be a problem if rails 3.2 didn't merge the WHERE clauses of nested scopes, which causes the previous filtering by type of Enterprise/Community to be thrown away in favor of the broader one. This was fixed in later rails versions but we want to be able to search only for Enterprises or Communities, so I translated the scope to a class method on the parent class Organization, so it can be inherited by the other.
18 Jun, 2015
1 commit
17 Jun, 2015
1 commit
-
Always show parent and children when getting a specific category with id
15 Jun, 2015
1 commit
08 Jun, 2015
1 commit
02 Jun, 2015
25 commits
-
Also create a subfolder (test/unit/api) to avoid conflicts with unit tests of models that already exists.