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-2.0.50 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.49 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.48 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.47 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.46 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.45 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.44 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.43 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.42 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.41 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.40 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.39 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.38 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.37 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.36 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.35 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.34 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.33 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.32 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.31 lib/eco/api/custom/error_handler.rb