Join meeting name is now stored in a session cookie (#432)

This commit is contained in:
farhatahmad
2019-04-10 17:06:19 -04:00
committed by Jesus Federico
parent 4d648534f7
commit f6715b83ae
2 changed files with 13 additions and 1 deletions

View File

@ -20,7 +20,7 @@
required: true,
class: "form-control join-form",
placeholder: t("enter_your_name"),
value: "#{current_user ? current_user.name : ''}",
value: "#{@name}",
readonly: !current_user.nil? %>
<%= f.submit t("room.join"), class: "btn btn-primary btn-sm col-sm-3 form-control join-form" %>
</div>