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:
Sam
2013-07-02 12:22:56 +10:00
parent 68d98ec94e
commit f6b850e7a4
5 changed files with 31 additions and 15 deletions

View File

@ -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