Rename #create_with_type to #new_with_type

This commit is contained in:
Karl Erik Õunapuu 2020-02-05 16:28:01 +02:00
parent fe8d1d1f0b
commit 5d8e78f3c6
4 changed files with 16 additions and 14 deletions

View file

@ -53,7 +53,7 @@ class BankTransaction < ApplicationRecord
return
end
payment_order = PaymentOrder.create_with_type(type: channel, invoice: invoice)
payment_order = PaymentOrder.new_with_type(type: channel, invoice: invoice)
payment_order.save!
if create_activity(registrar, invoice)

View file

@ -32,7 +32,7 @@ class PaymentOrder < ApplicationRecord
supported
end
def self.create_with_type(type:, invoice:)
def self.new_with_type(type:, invoice:)
channel = ('PaymentOrders::' + type.camelize).constantize
PaymentOrder.new(type: channel, invoice: invoice)