06 Jul, 2015
11 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>
-
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>
-
Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Hebert Douglas <hebertdougl@gmail.com>
04 Jul, 2015
3 commits
-
Instead of using nested attributes to create new comment, API users will just put the attributes straight up. It makes more sense that way, avoiding redundancy in the request url.
29 Jun, 2015
8 commits
-
API improvements - Fixed bug on GET enterprise API showing communities and vice-versa. - Improved POST comment API to recieve multiple params, such as Title. See merge request !610
-
Move users api mountpoint to people and also deal with permissions issues.
25 Jun, 2015
4 commits
-
Add staging environment See merge request !611
24 Jun, 2015
6 commits
-
Avoids social buttons breaking when used in contexts with deeper route, like inside a post on a route defined by a plugin or a deep folder tree. It was never a good idea to use relative path in the first place. Fixes Issue #61
-
After asset pipeline changes, `javascript_include_tag` doesn't take array as argument anymore.
-
This makes upgrading development environments just work, no conflicts between what's installed and what's in Gemfile.lock
-
- Fixed bug on GET enterprise API showing communities and vice-versa. - Improved POST comment API to recieve multiple params, such as Title. Signed-off-by: André Bernardes <andrebsguedes@gmail.com> Signed-off-by: Tallys Martins <tallysmartins@gmail.com>
23 Jun, 2015
4 commits
-
Georef e cosmética See merge request !608
20 Jun, 2015
3 commits
-
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.
19 Jun, 2015
1 commit
-
This was breaking the asset pipeline for me when running in production mode