BB.UI.Web.MVC.Controllers.Web_API.PlaylistController.getPlaylistByKey C# (CSharp) Method

getPlaylistByKey() private method

private getPlaylistByKey ( string key ) : IHttpActionResult
key string
return IHttpActionResult
        public IHttpActionResult getPlaylistByKey(string key)
        {
            var playlist = playlistManager.ReadPlaylistByKey(key);
            if (playlist == null) return NotFound();

            return Ok(playlist);
        }