<%# # @file # Form for editing a map # Located at addresses /maps/:id/edit. In use. #%> <%= form_for @map, url: map_url(@map) do |form| %>

Edit Map

<%= form.text_field :name %> <%= form.text_area :desc, class: "description", :rows => 5 %> <% if @map.user == user %> <%= form.select :permission, options_for_select(['commons', 'public', 'private'], @map.permission) %>

Topics and synapses you create newly on this map will be set by default to the permissions of your map.
Permissions of already created topics will not be changed to your new map permission.

<% end %> <%= form.submit "Update", class: "update" %> <% end %>