Skip to content
This repository has been archived by the owner on Feb 9, 2019. It is now read-only.

Commit

Permalink
Merge branch 'feature/itacloud-6688' into 'develop'
Browse files Browse the repository at this point in the history
Add issue ordering filter

- ITACLOUD-6688

See merge request !12
  • Loading branch information
livenson committed Apr 18, 2016
2 parents ee1d517 + 6bb1b19 commit cff008f
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/nodeconductor_jira/filters.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,13 @@ class Meta(object):
'project_key',
'user_uuid'
]
order_by = [
'created',
'updated',
# desc
'-created',
'-updated',
]


class CommentFilter(django_filters.FilterSet):
Expand Down

0 comments on commit cff008f

Please sign in to comment.