This repository was archived by the owner on Jul 24, 2020. It is now read-only.
This repository was archived by the owner on Jul 24, 2020. It is now read-only.
Archiving a reservation with no reserver fails #1253
Closed
Description
This is an unfortunate bug since it was one of the original reasons we created an archive action to begin with; it's is a consequence of our notes generation in the Reservation#archive
method since we currently try to make links for everything. Steps to replicate:
- Create reservation
- Manually set
reserver: nil
- Attempt to archive said reservation
Expected: Success
Actual: Failure
We just need to make sure not to call reserver.md_link
if reserver == nil
.
Activity