Merge pull request #18 from TwilioDevEd/remove-room-from-video-grant

Allow users to connect to any video room
This commit is contained in:
Jeff Linwood
2017-05-19 16:32:58 -05:00
committed by GitHub

2
app.py
View File

@@ -72,7 +72,7 @@ def token():
token.add_grant(sync_grant) token.add_grant(sync_grant)
# Create a Video grant and add to token # Create a Video grant and add to token
video_grant = VideoGrant(room='default room') video_grant = VideoGrant()
token.add_grant(video_grant) token.add_grant(video_grant)
# Create an Chat grant and add to token # Create an Chat grant and add to token