Merge pull request #704 from taigaio/us/3903/show-sprint-in-search-results
US #3903: Sprint number/title column on search results for user storiesremotes/origin/issue/4795/notification_even_they_are_disabled
commit
40eaa7e119
|
@ -27,6 +27,7 @@ answer newbie questions, and generally made taiga that much better:
|
|||
- Bruno Clermont <bruno@robotinfra.com>
|
||||
- Chris Wilson <chris.wilson@aridhia.com>
|
||||
- David Burke <david@burkesoftware.com>
|
||||
- Everardo Medina <everblut@gmail.com>
|
||||
- Hector Colina <hcolina@gmail.com>
|
||||
- Joe Letts
|
||||
- Julien Palard
|
||||
|
|
|
@ -7,6 +7,7 @@
|
|||
- ...
|
||||
|
||||
### Misc
|
||||
- Add sprint name and slug on search results for user stories ((thanks to [@everblut](https://github.com/everblut)))
|
||||
- Lots of small and not so small bugfixes.
|
||||
|
||||
|
||||
|
|
|
@ -41,7 +41,8 @@ class TaskSearchResultsSerializer(TaskSerializer):
|
|||
class UserStorySearchResultsSerializer(UserStorySerializer):
|
||||
class Meta:
|
||||
model = UserStory
|
||||
fields = ('id', 'ref', 'subject', 'status', 'total_points')
|
||||
fields = ('id', 'ref', 'subject', 'status', 'total_points',
|
||||
'milestone_name', 'milestone_slug')
|
||||
|
||||
|
||||
class WikiPageSearchResultsSerializer(WikiPageSerializer):
|
||||
|
|
Loading…
Reference in New Issue