Add room setting to require moderator approval (#660)

This commit is contained in:
shawn-higgins1
2019-07-23 16:16:14 -04:00
committed by Jesus Federico
parent f7c88cfc6a
commit 7b96d5ae41
7 changed files with 37 additions and 9 deletions

View File

@ -119,8 +119,10 @@ describe RoomsController, type: :controller do
@request.session[:user_id] = @owner.id
name = Faker::Games::Pokemon.name
room_params = { name: name, "client": "html5", "mute_on_join": "1", "anyone_can_start": "1" }
json_room_settings = "{\"muteOnStart\":true,\"joinViaHtml5\":true,\"anyoneCanStart\":true}"
room_params = { name: name, "client": "html5", "mute_on_join": "1",
"require_moderator_approval": "1", "anyone_can_start": "1" }
json_room_settings = "{\"muteOnStart\":true,\"requireModeratorApproval\":true," \
"\"joinViaHtml5\":true,\"anyoneCanStart\":true}"
post :create, params: { room: room_params }
@ -357,8 +359,8 @@ describe RoomsController, type: :controller do
@request.session[:user_id] = @user.id
room_params = { "client": "html5", "mute_on_join": "1", "name": @secondary_room.name }
formatted_room_params = "{\"muteOnStart\":true,\"joinViaHtml5\":true,\"anyoneCanStart\":false}"
# JSON string format
formatted_room_params = "{\"muteOnStart\":true,\"requireModeratorApproval\":false," \
"\"joinViaHtml5\":true,\"anyoneCanStart\":false}" # JSON string format
expect { post :update_settings, params: { room_uid: @secondary_room.uid, room: room_params } }
.to change { @secondary_room.reload.room_settings }