2022-06-20 08:37:17 +02:00
|
|
|
using Microsoft.AspNetCore.Mvc;
|
2020-03-31 10:57:56 +02:00
|
|
|
|
2022-06-20 08:37:17 +02:00
|
|
|
namespace Umbraco.Cms.Web.BackOffice.ActionResults;
|
|
|
|
|
|
|
|
|
|
public class JavaScriptResult : ContentResult
|
2020-03-31 10:57:56 +02:00
|
|
|
{
|
2022-06-20 08:37:17 +02:00
|
|
|
public JavaScriptResult(string? script)
|
2020-03-31 10:57:56 +02:00
|
|
|
{
|
2022-06-20 08:37:17 +02:00
|
|
|
Content = script;
|
|
|
|
|
ContentType = "application/javascript";
|
2020-03-31 10:57:56 +02:00
|
|
|
}
|
|
|
|
|
}
|