Reset default categories watching setting

hi,

i am trying to reset default categories watching for all users but no success.

Although seems no categories selected in setting area users preferences have some categories selected.

2 Likes

Hello @ufukayyildiz

Did you find out how to proceed with this issue ? While doing the same I had some trouble as well. It ended up not working at all ^^ c.f. Members not receiving emails from Watched category (again)

3 Likes

No, Not yet.

2 Likes

I believe it’s designed so that the setting respects the user’s choices. So, if a user manually adds a category, it won’t be overwritten.

You might be able to do some magic from the Rails console, but I think a better approach would be to educate your users. What do you think? Or do you have a specific situation in which you are required to change the default no matter what?

1 Like

Thanks for your reply.

I would be very happy about a rails console command to copy user preferences. I absolutely understand the design choice that user preferences prime over site settings. But the problem is that sites are evolving and their organization with it.

In our case, we switched from an organization where all announcements are posted as a new topic: the result was a huge amount of undiscussed topics (1 post only) on the front-page. I now see that I started looking into that case in Feb 2023 Unlist or archive a post when it has no reply per category.

As these announcements are relevant and containing deadlines, it was not a choice to hide them from the front-page. So we moved to an organization with 5 dedicated topics (type of announcement) in which each post is a new announcement.[1] Still as these posts are important, we tried to set the category to watched in order to get users notified in real time.

This was the beginning of the situation which resulted currently in nobody getting anything except user_mentioned and digest. The switch would have been so much easier if one could just reset all user preferences to the new site defaults. Or, as another idea, copy the user preferences of a virtual new signup to all other users.[2]

Meanwhile, I told the users about the fact that systems sometimes don’t work as intended and that notification emails won’t come for an undefined period of time.


  1. Here it would be very useful to be able to enable “Reply to Topic” only. ↩︎

  2. Which I can image is currently possible via rails. ↩︎

Hello again. I am still looking into this and in our case resetting the user preferences makes sense because the structure of the site has changed which has led to a change in the way email notifications work.

From the discourse AI, I got suggested the following rails command:

UserOption.update_all(email_digests: true, email_level: 1, email_messages_level: 1)

Do you think this would achieve what we’re looking for ?
Thanks !

I think the bellow steps solved the issue !

In the site settings I set the category (31) to be watched by default, retroactively.
Check:

CategoryUser.where(category_id: 31).pluck(:user_id, :notification_level)

Most users have a notification_level of 3 for my category 31. :+1:

Now there are two things in the way for this change to have a 100% effect:

  1. The user’s global email preferences.
  2. The user’s notification preferences for each topic in the category (31).

:warning: The following lines will modify personal settings of your users. Don’t get into a fight.

First, in order to “reactivate” the user’s emails, one has to set the users email_level to 1 (i.e. “when away”) or 2 (“always”):

UserOption.update_all(email_level: 1)

Check:

UserOption.group(:email_level).count

I get something like => {1=>X} with X being the number of users.

Second, the topic notification_level has priority over the category notification_level (which was modified in the site settings). The easiest way is to get the topic preferences out of the way. To do so, one simply deletes the entries topic by topic:

TopicUser.where(topic_id: <topic_id_nr>).destroy_all

Check:

TopicUser.where(topic_id: <topic_id_nr>).exists?

Getting something like => [ ] which means no user has topic preferences and the category notification_level will be the default for all users.


N.B.: Somehow, some users still had no notification preferences for the category (31) set (i.e. no entry in the category_user table). To make sure their notification_level is set, one has to create an entry with the value for notification_level:

User.find_each do |user|
  unless CategoryUser.exists?(user_id: user.id, category_id: 31)
    CategoryUser.create!(user_id: user.id, category_id: 31, notification_level: 3)
  end
end

Check:

CategoryUser.where(category_id: 31).pluck(:id, :notification_level)