Skip to content

Commit

Permalink
Merge pull request #1861 from IFRCGo/hotfix/final-report-export
Browse files Browse the repository at this point in the history
Add disaster details in final report
  • Loading branch information
thenav56 authored Aug 3, 2023
2 parents d064974 + b5f8e7a commit 1ff50c9
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
8 changes: 7 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## Unreleased

## 1.1.485

### Added
- Add disaster_type details in dref final report

## 1.1.484

### Added
Expand Down Expand Up @@ -2267,7 +2272,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## 0.1.20

[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.484...HEAD
[Unreleased]: https://github.com/IFRCGo/go-api/compare/1.1.485...HEAD
[1.1.485]: https://github.com/IFRCGo/go-api/compare/1.1.484...1.1.485
[1.1.484]: https://github.com/IFRCGo/go-api/compare/1.1.483...1.1.484
[1.1.483]: https://github.com/IFRCGo/go-api/compare/1.1.482...1.1.483
[1.1.482]: https://github.com/IFRCGo/go-api/compare/1.1.481...1.1.482
Expand Down
1 change: 1 addition & 0 deletions dref/serializers.py
Original file line number Diff line number Diff line change
Expand Up @@ -915,6 +915,7 @@ class DrefFinalReportSerializer(NestedUpdateMixin, NestedCreateMixin, ModelSeria
created_by_details = UserNameSerializer(source="created_by", read_only=True)
users_details = UserNameSerializer(source="users", many=True, read_only=True)
modified_by_details = UserNameSerializer(source="modified_by", read_only=True)
disaster_type_details = DisasterTypeSerializer(source="disaster_type", read_only=True)

class Meta:
model = DrefFinalReport
Expand Down
2 changes: 1 addition & 1 deletion main/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@
from .celery import app as celery_app

__all__ = ['celery_app']
__version__ = '1.1.484'
__version__ = '1.1.485'

0 comments on commit 1ff50c9

Please sign in to comment.