Created
November 16, 2017 18:26
-
-
Save StaverDmitry/f7edd63196f0dfa3b7fbb477f9bf2457 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
cancellation_fees_params.map do |c_f_params| | |
fee = CancellationFee.find_or_initialize_by(cancellable_id: c_f_params[:cancellable_id], | |
cancellable_type: c_f_params[:cancellable_type]) | |
fee.assign_attributes(c_f_params) | |
fee.save | |
fee | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment