diff options
| author | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-20 12:12:10 -0700 |
|---|---|---|
| committer | Tim Hobbs <jesus.tesh@gmail.com> | 2014-03-20 12:12:10 -0700 |
| commit | d5e49f590d8e027a8755ea607bf3caba3ddcc9f1 (patch) | |
| tree | 717dc53979fb4686ad499caf40bb834f41c05d09 /MediaBrowser.Api/SessionsService.cs | |
| parent | 436d10bef946299f67109daa91eff5cc1325f9ff (diff) | |
Enable remote "fullscreen" command
This is really only pseudo-fullscreen, as the js fullscreen API doesn't
allow fullscreen without user interaction.
Diffstat (limited to 'MediaBrowser.Api/SessionsService.cs')
| -rw-r--r-- | MediaBrowser.Api/SessionsService.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/MediaBrowser.Api/SessionsService.cs b/MediaBrowser.Api/SessionsService.cs index df35c93a0..62e5a252e 100644 --- a/MediaBrowser.Api/SessionsService.cs +++ b/MediaBrowser.Api/SessionsService.cs @@ -131,7 +131,7 @@ namespace MediaBrowser.Api /// Gets or sets the play command. /// </summary> /// <value>The play command.</value> - [ApiMember(Name = "Command", Description = "The command to send - stop, pause, unpause, nexttrack, previoustrack, seek.", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")] + [ApiMember(Name = "Command", Description = "The command to send - stop, pause, unpause, nexttrack, previoustrack, seek, fullscreen.", IsRequired = true, DataType = "string", ParameterType = "path", Verb = "POST")] public PlaystateCommand Command { get; set; } } |
