mirror of
https://github.com/codeninjasllc/discourse.git
synced 2024-11-27 17:46:05 -05:00
skip validations for Spam Rules when needed
This commit is contained in:
parent
a2d5a7dbd8
commit
5e0b22365a
1 changed files with 1 additions and 1 deletions
|
@ -76,7 +76,7 @@ class PostCreator
|
|||
{ user: @user,
|
||||
limit_once_per: 24.hours,
|
||||
message_params: {domains: @post.linked_hosts.keys.join(', ')} } )
|
||||
elsif @post && !@post.errors.present?
|
||||
elsif @post && !@post.errors.present? && !@opts[:skip_validations]
|
||||
SpamRulesEnforcer.enforce!(@post)
|
||||
end
|
||||
|
||||
|
|
Loading…
Reference in a new issue