7d4da81272
* install rubocop * 1961 automatic rubocop fixes * update rubocop.yml to ignore half of the remaining cops * rubocop lint warnings * random other warnings fixed
9 lines
165 B
Ruby
9 lines
165 B
Ruby
module DeviseHelper
|
|
def devise_error_messages!
|
|
resource.errors.to_a[0]
|
|
end
|
|
|
|
def devise_error_messages?
|
|
resource.errors.empty? ? false : true
|
|
end
|
|
end
|