This repository has been archived on 2021-10-24. You can view files and clone it, but cannot push or open issues or pull requests.
greenlight/app/views/rooms/index.html.erb

21 lines
463 B
Plaintext

<p>This is a room.</p>
<p><%= @room.user.name %><p>
<p><%= @room.meeting.uid %><p>
<p><%= @room.uid %><p>
<%= link_to 'Sessions', root_path %>
<%= link_to 'Recordings', root_path %>
<%= link_to 'Settings', root_path %>
<p>Click below to join the meeting.</p>
<% if @room.meeting.is_running? %>
<p>meeting is already running</p>
<% else %>
<%= link_to "Start Meeting", start_room_path(@room.uid) %>
<% end %>
<br><br>
<%= link_to 'Logout', logout_path %>