Guest User

Untitled

a guest
Jun 20th, 2018
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.27 KB | None | 0 0
  1. def voip_connection_attributes=(voip_connection_attributes)
  2. transaction do
  3. voip_connections.each do |vc|
  4. vc.destroy
  5. end
  6. voip_connection_attributes.each do |attributes|
  7. voip_connections.build(attributes)
  8. end
  9. end
  10. end
Add Comment
Please, Sign In to add comment