mirror of
https://github.com/heartcombo/simple_form.git
synced 2022-11-09 12:19:26 -05:00
14 lines
196 B
Ruby
14 lines
196 B
Ruby
module SimpleForm
|
|
module HasErrors
|
|
|
|
protected
|
|
|
|
def errors
|
|
object.errors
|
|
end
|
|
|
|
def has_errors?
|
|
object && object.respond_to?(:errors) && errors.present?
|
|
end
|
|
end
|
|
end
|