コード例 #1
0
ファイル: BrandingService.cs プロジェクト: zxz2020/jellyfin
        public object Get(GetBrandingCss request)
        {
            var result = _config.GetConfiguration <BrandingOptions>("branding");

            // When null this throws a 405 error under Mono OSX, so default to empty string
            return(ResultFactory.GetResult(Request, result.CustomCss ?? string.Empty, "text/css"));
        }
コード例 #2
0
        public object Get(GetBrandingCss request)
        {
            var result = _config.GetConfiguration <BrandingOptions>("branding");

            return(ResultFactory.GetResult(result.CustomCss, "text/css"));
        }