discourse/app
Krzysztof Kotlarek 17366d3bcc
FEATURE: notify tag watchers when tag was added to post (#8299)
Issue was mentioned in this [meta topic](https://meta.discourse.org/t/send-a-notification-to-watching-users-when-adding-tag/125314)

It is working well when category is changed because NotifyCategoryChange job already got that code:
```
if post&.topic&.visible?
  post_alerter = PostAlerter.new
  post_alerter.notify_post_users(post, User.where(id: args[:notified_user_ids]))
  post_alerter.notify_first_post_watchers(post, post_alerter.category_watchers(post.topic))
end
```

For NotifyTagChange job notify post users were missing so it worked only when your notification was set to `watching first post`
2019-11-07 08:20:15 +11:00
..
assets FIX: Too much blank padding in video oneboxes 2019-11-06 15:07:51 -05:00
controllers FIX: unicode group names encoded for url (#8302) 2019-11-06 14:25:45 -06:00
helpers FEATURE: Load translation overrides without JS eval 2019-11-05 19:16:38 +01:00
jobs FEATURE: notify tag watchers when tag was added to post (#8299) 2019-11-07 08:20:15 +11:00
mailers UX: show user email address on "grant admin access" email and UI 2019-11-04 14:47:00 +05:30
models FEATURE: Load translation overrides without JS eval 2019-11-05 19:16:38 +01:00
serializers FEATURE: Overhaul of admin API key system (#8284) 2019-11-05 14:10:23 +00:00
services FEATURE: Overhaul of admin API key system (#8284) 2019-11-05 14:10:23 +00:00
views FIX: add <img> alt attribute for Summary emails 2019-11-06 15:26:46 +05:30