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.1.2 lib/eco/api/custom/error_handler.rb
eco-helpers-2.1.1 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.68 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.67 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.66 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.65 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.64 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.63 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.62 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.61 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.60 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.59 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.58 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.57 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.56 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.55 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.54 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.53 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.52 lib/eco/api/custom/error_handler.rb
eco-helpers-2.0.51 lib/eco/api/custom/error_handler.rb