Commit Graph

43 Commits (2ac01c0d5481165f565b94463e027df1438d709d)

Author SHA1 Message Date
David Barragán Merino ab56f1a772 Task #3526: Filter projects by text query (order by ranking name > tags > description 2016-01-21 18:44:18 +01:00
Andrey Antukh fe30371e2c Add alejandro.alonso copyright preamble to main python sources. 2016-01-08 16:06:57 +02:00
Andrey Antukh 2ad5fda864 Fix my email on copyright preamble on main source files. 2016-01-08 15:58:24 +02:00
David Barragán Merino f992d372df Update license message 2016-01-04 08:51:06 +01:00
David Barragán Merino cd45aa5cbf Fix some imports mistakes 2015-11-18 17:33:45 +01:00
David Barragán Merino 9b56a414f0 Fix dates in license messages. Change 2014 to 2014-2015 2015-10-13 11:27:15 +02:00
Alejandro Alonso 275b2950ef Refactoring search system 2015-09-16 11:45:34 +02:00
Alejandro Alonso f3641f5cfb Refactoring and improving watchers 2015-08-26 15:10:13 +02:00
David Barragán Merino 21153ea1aa Improve userstories/filters_data and issues/filter_data 2015-07-28 08:21:08 +02:00
Alejandro Alonso acbd253420 Adding multiple status filtering to userstories 2015-06-09 15:06:51 +02:00
David Barragán Merino 29b3de6101 Revert "Temporary disable public projects on listings"
This reverts commit 5a45db23fc.
2015-05-25 15:24:06 +02:00
Alejandro Alonso 57b25f13f1 Fixing users API 2015-05-21 12:27:32 +02:00
David Barragán Merino b23981f4be [i18n] Minor fixes in translations 2015-05-05 12:10:04 +02:00
David Barragán Merino 910d71eefc Add code of django-restframwork to taiga 2015-04-14 11:15:15 +02:00
David Barragán Merino d3fade9565 Add gettext to translatable strings 2015-04-09 15:25:40 +02:00
Jesús Espino 5a45db23fc Temporary disable public projects on listings 2015-03-18 11:35:06 +01:00
Jesús Espino be4d0c6d06 Fix MembersFilter of Users api, now filter correctly and filter by is_active 2015-03-12 10:29:32 +01:00
Jesús Espino ed01cbd3a7 BUG#2390 Allowing to filter projects by membership 2015-03-11 17:04:54 +01:00
Alejandro Alonso 44e6f7c42d Updating anon and public permissions when project is public 2015-03-09 12:48:14 +01:00
Alejandro Alonso 79e9682531 Updating permissions for supporting public projects 2015-03-09 12:48:14 +01:00
Jesús Espino 47c338324e Some flake8 fixes 2015-02-24 19:55:02 +01:00
Jesús Espino 871d9d6963 SmallFix: Add necesary imports 2015-02-18 09:54:50 +01:00
David Barragán Merino 5196f1c25d Refactor day: Move RoleViewSet from taiga.projects to taiga.users 2015-02-16 20:04:41 +01:00
David Barragán Merino 268b6a7ad4 Issue #1886: Bad request when use project.slug instead project.id in API calls 2015-02-02 18:05:21 +01:00
Jesús Espino 47107eb079 US #1678: Add webhooks to the backend 2015-01-14 16:04:22 +01:00
Jesús Espino af1450ccf1 Refactor of tags queries using djorm-pgarray queries 2014-12-03 11:53:23 +01:00
Jesús Espino 72730fdb73 Fixed failing tests 2014-11-25 18:51:58 +01:00
Jesús Espino 63cd1dcac6 Refactoring the filtering by permissions with django-1.7 djorm-pgarray features 2014-11-25 18:51:58 +01:00
Alejandro Alonso e71a9a1202 Fixing searchs, using an and for the words we search instead of an or 2014-10-16 13:14:43 +02:00
Jesús Espino a9ecac7c1c Fixed bug #763: Now filter of us and issues filter by subject and reference 2014-08-28 11:24:19 +02:00
Jesús Espino 8a256883d9 Now supersusers can view everything 2014-08-18 10:20:37 +02:00
David Barragán Merino d8e79afdc9 Shorten some long lines 2014-08-14 23:53:27 +02:00
Jesús Espino 8eb40aa6a7 Fixed again filtering based on permissions 2014-08-08 15:00:05 +02:00
Jesús Espino 26e462e182 Fixed issue #298: Now permissions on API listings works 2014-08-08 13:43:07 +02:00
Anler Hp 6229770c0f Task #436 - Filter user stories by subject 2014-07-29 11:07:47 +02:00
Jesús Espino d97edb464c [HUGE CHANGE] Changed the permissions system 2014-07-24 12:19:06 +02:00
Anler Hp f3dd200791 Bugfix 2014-06-18 14:12:42 +02:00
Anler Hp ac5e163dc5 Implement tags using pg arrays 2014-06-18 10:14:29 +02:00
Anler Hp 9bca29ce20 Creating reusable "filter_by_tags" function.
Moving the filtering-by-tag logic out of TagsFilter into a reusable function.
2014-05-22 18:34:03 +02:00
David Barragán Merino 234ee7a2bc Remove the coding lines 2014-04-25 12:33:16 +02:00
David Barragán Merino 2c973f50cd Change license to AGPL-3.0 (minor fixes) 2014-04-23 13:03:47 +02:00
ikame e9dfbe7378 US #50: Return neighbors when fetching an US/Issue
The response for an UserStory/Issue now contains:

{
    ...
    "neighbors": {
        "previous": {
            "id": ...,
            "ref": ...,
            "subject": ...
        },
        "next": {
            ... same as above
        }
    }
}

If there's a neighbor missing the response will contain the empty dict {}:

{
    ...
    "neighbors": {
        "previous": {},
        ...
    }
}

Neighbors are looked up applying the same filters defined in the
corresponding ViewSets and the same ordering defined in those filters or
ultimately, in the model's meta. In other words, using the same params
you use to filter the object list, can be used to filter the neighbors
when fetching the object's details.
2014-02-26 12:47:55 +01:00
Jesús Espino 99b9066965 US#49: Renaming app to Taiga 2014-01-27 17:33:43 +01:00