discourse/plugins/poll
Martin Brennan 5268568d23
FEATURE: Remove user topic timers and migrate to bookmarks with reminders (#10474)
This PR removes the user reminder topic timers, because that system has been supplanted and improved by bookmark reminders. The option is removed from the UI and all existing user reminder topic timers are migrated to bookmark reminders.

Migration does this:

* Get all topic_timers with status_type 5 (reminders)
* Gets all bookmarks where the user ID and topic ID match
* Loops through the found topic timers
  * If there is no bookmark for the OP of the topic, then we just create a bookmark with a reminder
  * If there is a bookmark for the OP of the topic and it does **not** have a reminder set, then just 
update it with the topic timer reminder
  * If there is a bookmark for the OP of the topic with a reminder then just discard the topic timer
* Cancels all outstanding user reminder topic timers
* **Trashes (not deletes) all user reminder topic timers**

Notes:

* For now I have left the user reminder topic timer job class in place; this is so the jobs can be cancelled in the migration. It and the specs will be deleted in the next PR.
* At a later date I will write a migration to delete all trashed user topic timers. They are not deleted here in case there are data issues and they need to be recovered.
* A future PR will change the UI of the topic timer modal to make it look more like the bookmark modal.
2020-09-14 11:11:55 +10:00
..
app PERF: Don't load all poll_votes for a poll 2020-09-05 18:42:11 +01:00
assets DEV: apply coding standards to plugins (#10594) 2020-09-04 13:51:53 +02:00
config Update translations 2020-09-09 14:59:40 +00:00
db FEATURE: Add 'groups' option to polls (#8469) 2020-01-28 14:30:04 +02:00
jobs/regular DEV: Upgrading Discourse to Zeitwerk (#8098) 2019-10-02 14:01:53 +10:00
lib FEATURE: Show votes in an "on voted" poll to the creator 2020-03-20 13:36:42 -07:00
spec DEV: Use `response.parsed_body` in specs (#9615) 2020-05-07 17:04:12 +02:00
test/javascripts FEATURE: Remove user topic timers and migrate to bookmarks with reminders (#10474) 2020-09-14 11:11:55 +10:00
plugin.rb PERF: Don't load all poll_votes for a poll 2020-09-05 18:42:11 +01:00