mirror of
https://github.com/discourse/discourse.git
synced 2025-05-22 22:43:33 +08:00
FEATURE: Introduce site setting to allow for non staff pm tagging (#16671)
Currently the only way to allow tagging on pms is to use the `allow_staff_to_tag_pms` site setting. We are removing that site setting and replacing it with `pm_tags_allowed_for_groups` which will allow for non staff tagging. It will be group based permissions instead of requiring the user to be staff. If the existing value of `allow_staff_to_tag_pms` is `true` then we include the `staff` groups as a default for `pm_tags_allowed_for_groups`.
This commit is contained in:
@ -6,7 +6,7 @@ describe Imap::Sync do
|
||||
|
||||
before do
|
||||
SiteSetting.tagging_enabled = true
|
||||
SiteSetting.allow_staff_to_tag_pms = true
|
||||
SiteSetting.pm_tags_allowed_for_groups = "1|2|3"
|
||||
|
||||
SiteSetting.enable_imap = true
|
||||
|
||||
@ -103,7 +103,6 @@ describe Imap::Sync do
|
||||
context "when tagging not enabled" do
|
||||
before do
|
||||
SiteSetting.tagging_enabled = false
|
||||
SiteSetting.allow_staff_to_tag_pms = false
|
||||
end
|
||||
|
||||
it "creates a topic from an incoming email but with no tags added" do
|
||||
|
Reference in New Issue
Block a user