mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
FEATURE: Promote bookmarks with reminders to core functionality (#9369)
The main thrust of this PR is to take all the conditional checks based on the `enable_bookmarks_with_reminders` away and only keep the code from the `true` path, making bookmarks with reminders the core bookmarks feature. There is also a migration to create `Bookmark` records out of `PostAction` bookmarks for a site. ### Summary * Remove logic based on whether enable_bookmarks_with_reminders is true. This site setting is now obsolete, the old bookmark functionality is being removed. Retain the setting and set the value to `true` in a migration. * Use the code from the rake task to create a database migration that creates bookmarks from post actions. * Change the bookmark report to read from the new table. * Get rid of old endpoints for bookmarks * Link to the new bookmarks list from the user summary page
This commit is contained in:
@ -238,11 +238,7 @@ module DiscourseNarrativeBot
|
||||
return unless @post.user_id == self.discobot_user.id
|
||||
|
||||
profile_page_url = url_helpers(:user_url, username: @user.username)
|
||||
bookmark_url = if SiteSetting.enable_bookmarks_with_reminders?
|
||||
"#{profile_page_url}/activity/bookmarks-with-reminders"
|
||||
else
|
||||
"#{profile_page_url}/activity/bookmarks"
|
||||
end
|
||||
bookmark_url = "#{profile_page_url}/activity/bookmarks-with-reminders"
|
||||
raw = <<~RAW
|
||||
#{I18n.t("#{I18N_KEY}.bookmark.reply", i18n_post_args(bookmark_url: bookmark_url))}
|
||||
|
||||
|
Reference in New Issue
Block a user