aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuke <luke.pulverenti@gmail.com>2014-03-21 18:29:52 -0400
committerLuke <luke.pulverenti@gmail.com>2014-03-21 18:29:52 -0400
commit72917cc0b795c8f18a7b982ef8c70da5aa8c8fa8 (patch)
tree92219a77c6d52c94758bea15ec4fdc5017453c45
parent9e82fc09ca19f9820a0871bb2d8213289d53ee4f (diff)
parentcf5e89d045c616db8a4e83beae0a38c94fcb3e42 (diff)
Merge pull request #748 from timhobbs/master
Enable remote "fullscreen"
-rw-r--r--MediaBrowser.Api/SessionsService.cs2
-rw-r--r--MediaBrowser.Model/Session/PlaystateCommand.cs6
2 files changed, 6 insertions, 2 deletions
diff --git a/MediaBrowser.Api/SessionsService.cs b/MediaBrowser.Api/SessionsService.cs
index 9ed9bd49e..e73e3490e 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; }
}
diff --git a/MediaBrowser.Model/Session/PlaystateCommand.cs b/MediaBrowser.Model/Session/PlaystateCommand.cs
index b0dec66d4..d83c6dae5 100644
--- a/MediaBrowser.Model/Session/PlaystateCommand.cs
+++ b/MediaBrowser.Model/Session/PlaystateCommand.cs
@@ -29,7 +29,11 @@ namespace MediaBrowser.Model.Session
/// <summary>
/// The seek
/// </summary>
- Seek
+ Seek,
+ /// <summary>
+ /// The fullscreen
+ /// </summary>
+ Fullscreen
}
public class PlaystateRequest