mirror of
https://github.com/discourse/discourse.git
synced 2025-05-21 18:12:32 +08:00
allow skipping the validations on creation if its an api call AND skip_validations is specified
this allows wordpress plugin to post very very short titles or titles that would otherwise be disallowed
This commit is contained in:
@ -56,7 +56,7 @@ class TopicCreator
|
||||
end
|
||||
|
||||
def save_topic
|
||||
unless @topic.save
|
||||
unless @topic.save(validate: !@opts[:skip_validations])
|
||||
@errors = @topic.errors
|
||||
raise ActiveRecord::Rollback.new
|
||||
end
|
||||
|
Reference in New Issue
Block a user