Story #109367694 - remove dead code, unused since 30.1.15

This commit is contained in:
Matt Farnsworth 2015-12-14 09:51:27 +02:00
parent 5aa0ae6423
commit 026c50b3ec

View file

@ -13,23 +13,4 @@ module UserEvents
end
end
# TODO: remove old
# module ClassMethods
# def registrar_events(id)
# registrar = Registrar.find(id)
# return [] unless registrar
# @events = []
# registrar.users.each { |user| @events << user_events(user.id) }
# registrar.epp_users.each { |user| @events << epp_user_events(user.id) }
# @events
# end
# def user_events(id)
# where(whodunnit: id.to_s)
# end
# def epp_user_events(id)
# where(whodunnit: "#{id}-EppUser")
# end
# end
end