mirror of
https://github.com/DRYTRIX/TimeTracker.git
synced 2026-05-21 22:00:07 -05:00
b50ce512fa
The timer blueprint had two view functions named resume_timer, both registering as endpoint 'timer.resume_timer' and causing Flask to raise AssertionError on app load. - Give the 'resume by id' route a unique endpoint: resume_timer_by_id - Rename the view for GET /timer/resume/<timer_id> to resume_timer_by_id - Update templates to use timer.resume_timer_by_id for links with timer_id - Keep timer.resume_timer for POST (resume current paused timer)