Skip to content

Commit

Permalink
Merge pull request #1303 from ScilifelabDataCentre/DDS-1393-show-crea…
Browse files Browse the repository at this point in the history
…tor-of-project

Return creator in project information
  • Loading branch information
i-oden authored Oct 19, 2022
2 parents 4e4cbb5 + 3ddd1c4 commit b6af931
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -160,3 +160,4 @@ Please add a _short_ line describing the PR you make, if the PR implements a spe
## Sprint (2022-10-14 - 2022-10-28)

- Limit projects listing to active projects only; a `--show-all` flag can be used for listing all projects, active and inactive ([#1302](https://github.com/ScilifelabDataCentre/dds_web/pull/1302))
- Return name of project creator from UserProjects ([#1303](https://github.com/ScilifelabDataCentre/dds_web/pull/1303))
1 change: 1 addition & 0 deletions dds_web/api/project.py
Original file line number Diff line number Diff line change
Expand Up @@ -492,6 +492,7 @@ def format_project_dict(self, current_user):
"PI": p.pi,
"Status": p.current_status,
"Last updated": p.date_updated if p.date_updated else p.date_created,
"Created by": p.creator.name,
}

# Get proj size and update total size
Expand Down

0 comments on commit b6af931

Please sign in to comment.