This is a room.
<%= @room.user.name %>
<%= link_to 'Sessions', root_path %> <%= link_to 'Recordings', root_path %> <%= link_to 'Settings', root_path %>
Enter a name to start a session.
<%= form_for @meeting do |f| %> <%= f.text_field :name %> <%= f.submit "Start" %> <% end %>Previous Sessions
<% current_user.room.meetings.each do |m| %><%= m.name + " " + m.is_running?.to_s + " " + m.recordings.to_s %>
<% end %>