Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add verify checksum flag to the email when project release #1478

Merged
merged 3 commits into from
Oct 6, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions SPRINTLOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -312,3 +312,4 @@ _Nothing merged in CLI during this sprint_

- Project title displayed along with the internal project ID email sent when a project is released ([#1475](https://github.com/ScilifelabDataCentre/dds_web/pull/1475))
- Use full DDS name in MOTD email subject ([#1477](https://github.com/ScilifelabDataCentre/dds_web/pull/1477))
- Add flag --verify-checksum to the comand in email template ([#1478])(https://github.com/ScilifelabDataCentre/dds_web/pull/1478)
2 changes: 1 addition & 1 deletion dds_web/templates/mail/project_release.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
<p style="font-family: arial, sans-serif; font-size: 12px; font-weight: normal; margin: 0; Margin-top: 0px;">
The DDS CLI command <i>dds ls -p {{project_id}}</i> can be used to list the files in this project. </p>
<p style="font-family: arial, sans-serif; font-size: 12px; font-weight: normal; margin: 0; Margin-top: 0px;">
The DDS CLI command <i>dds data get -p {{project_id}} -a</i> can be used to download all the files in this project to your current directory. </p>
The DDS CLI command <i>dds data get -p {{project_id}} -a --verify-checksum</i> can be used to download all the files in this project to your current directory. </p>
<p style=" font-family: arial, sans-serif; font-size: 14px; font-weight: normal; margin: 0; Margin-top: 15px;">
Your access to this project will expire on {{deadline}}</p>
<p style="font-family: arial, sans-serif; font-size: 10px; font-weight: normal; margin: 0; Margin-top: 10px;">
Expand Down
2 changes: 1 addition & 1 deletion dds_web/templates/mail/project_release.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ You were added to this project by {{displayed_sender}}.

The DDS CLI command 'dds ls -p {{project_id}}' can be used to list the files in this project.

The DDS CLI command 'dds data get -p {{project_id}} -a' can be used to download all the files in this project to your current directory.
The DDS CLI command 'dds data get -p {{project_id}} -a --verify-checksum' can be used to download all the files in this project to your current directory.

Your access to this project will expire on {{deadline}}

Expand Down