Sha256: db1a2d7f51d82790756b8605a34e7f1d9c6b81a79646d9623a77f875d6c0355d

Contents?: true

Size: 621 Bytes

Versions: 162

Compression:

Stored size: 621 Bytes

Contents

# Helper class to create a custom `ErrorHandler`
# @example Example of usage:
#  class Custom::ErrorHandler::EmailTaken < Eco::API::Custom::ErrorHandler
#    error Eco::API::Error::EmailTaken
#
#    def main(people, session, options, handler, job)
#      people.each do |person|
#        prev_email = person.initial_doc["email"]
#        if person.email != prev_email
#          person.email = prev_email
#        else
#          person.account = nil
#        end
#        job.add(person)
#      end
#    end
#  end
#
class Eco::API::Custom::ErrorHandler < Eco::API::Common::Loaders::ErrorHandler
end

Version data entries

162 entries across 162 versions & 1 rubygems

Version Path
eco-helpers-3.0.1 lib/eco/api/custom/error_handler.rb
eco-helpers-3.0.0 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.25 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.24 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.23 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.22 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.21 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.20 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.19 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.18 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.17 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.16 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.15 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.14 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.13 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.12 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.4 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.2 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.1 lib/eco/api/custom/error_handler.rb
eco-helpers-2.7.0 lib/eco/api/custom/error_handler.rb