Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
<%= t "user_mailer.warning.title.#{@warning.action}" %>
|
|
|
|
|
|
|
|
===
|
|
|
|
|
|
|
|
<% unless @warning.none_action? %>
|
2022-01-17 08:41:33 +00:00
|
|
|
<%= t "user_mailer.warning.explanation.#{@warning.action}", instance: @instance %>
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
|
|
|
|
<% end %>
|
2022-01-17 08:41:33 +00:00
|
|
|
<% if @warning.text.present? %>
|
Add moderation warnings (#9519)
* Add moderation warnings
Replace individual routes for disabling, silencing, and suspending
a user, as well as the report update route, with a unified account
action controller that allows you to select an action (none,
disable, silence, suspend) as well as whether it should generate an
e-mail notification with optional custom text. That notification,
with the optional custom text, is saved as a warning.
Additionally, there are warning presets you can configure to save
time when performing the above.
* Use Account#local_username_and_domain
2018-12-22 19:02:09 +00:00
|
|
|
<%= @warning.text %>
|
2022-01-17 08:41:33 +00:00
|
|
|
|
|
|
|
<% end %>
|
|
|
|
<% if @warning.report && !@warning.report.other? %>
|
|
|
|
**<%= t('user_mailer.warning.reason') %>** <%= t("user_mailer.warning.categories.#{@warning.report.category}") %>
|
|
|
|
|
|
|
|
<% if @warning.report.violation? && @warning.report.rule_ids.present? %>
|
|
|
|
<% @warning.report.rules.each do |rule| %>
|
|
|
|
- <%= rule.text %>
|
|
|
|
<% end %>
|
|
|
|
|
|
|
|
<% end %>
|
|
|
|
<% end %>
|
|
|
|
<% if !@statuses.empty? %>
|
2019-08-23 20:37:23 +00:00
|
|
|
<%= t('user_mailer.warning.statuses') %>
|
|
|
|
|
|
|
|
<% @statuses.each do |status| %>
|
|
|
|
|
|
|
|
<%= render 'notification_mailer/status', status: status %>
|
|
|
|
---
|
|
|
|
<% end %>
|
|
|
|
<% else %>
|
|
|
|
---
|
|
|
|
<% end %>
|
|
|
|
|
2022-03-09 11:11:11 +00:00
|
|
|
<%= t 'user_mailer.warning.appeal_description', instance: @instance %>
|
|
|
|
<%= disputes_strike_url(@warning) %>
|