Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor docs edits #289

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/opentok/opentok.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,6 @@ module OpenTok
# the token.
#
# @param [Hash] options A hash defining options for the token.
# @option options [String] :token_type The type of token to generate. Must be one of 'T1' or 'JWT'. 'JWT' is the default.
# @option options [Symbol] :role The role for the token. Set this to one of the following
# values:
# * <code>:subscriber</code> -- A subscriber can only subscribe to streams.
Expand All @@ -60,6 +59,7 @@ module OpenTok
# published by the client. Layout classes are used in customizing the layout of videos in
# {https://tokbox.com/developer/guides/broadcast/live-streaming/ live streaming broadcasts}
# and {https://tokbox.com/developer/guides/archiving/layout-control.html composed archives}.
# @option options [String] :token_type The type of token to generate. Must be one of 'T1' or 'JWT'. 'JWT' is the default.
# @return [String] The token string.
class OpenTok

Expand Down
3 changes: 3 additions & 0 deletions lib/opentok/session.rb
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,9 @@ module OpenTok
# * <code>:publisher</code> -- A publisher can publish streams, subscribe to
# streams, and signal. (This is the default value if you do not specify a role.)
#
# * <code>:publisheronly</code> -- A client connected with a publisheronly token
# can publish streams but cannot subscribe to streams.
#
# * <code>:moderator</code> -- n addition to the privileges granted to a
# publisher, a moderator can perform moderation functions, such as forcing clients
# to disconnect, to stop publishing streams, or to mute audio in published streams. See the
Expand Down