I read through a lot of pages on `has_one relationships and nested attributes but haven\'t been successful in making this work. Any help would be fantastic.
Each Use
Not certain, think you need:
<%= f.fields_for @network, :network_attributes do |fn| %>
Incase someone else is having the same issue, I resolved this by changing:
<%= f.fields_for @network do |fn| %>
to <%= f.fields_for :network do |fn| %>
and removing :network
as an accessible attribute from the user model.
If you remove :network from the model as an accessible it will not work for sure