disable debuging features on release
This commit is contained in:
parent
04b8cfa0e4
commit
5c4641c6ae
1 changed files with 6 additions and 4 deletions
|
@ -14,6 +14,7 @@ using Newtonsoft.Json;
|
||||||
|
|
||||||
namespace BirdsiteLive.Controllers
|
namespace BirdsiteLive.Controllers
|
||||||
{
|
{
|
||||||
|
#if DEBUG
|
||||||
public class DebugingController : Controller
|
public class DebugingController : Controller
|
||||||
{
|
{
|
||||||
private readonly InstanceSettings _instanceSettings;
|
private readonly InstanceSettings _instanceSettings;
|
||||||
|
@ -80,7 +81,7 @@ namespace BirdsiteLive.Controllers
|
||||||
type = "Create",
|
type = "Create",
|
||||||
actor = actor,
|
actor = actor,
|
||||||
published = nowString,
|
published = nowString,
|
||||||
to = new []{ to },
|
to = new[] { to },
|
||||||
//cc = new [] { "https://www.w3.org/ns/activitystreams#Public" },
|
//cc = new [] { "https://www.w3.org/ns/activitystreams#Public" },
|
||||||
apObject = new Note()
|
apObject = new Note()
|
||||||
{
|
{
|
||||||
|
@ -93,7 +94,7 @@ namespace BirdsiteLive.Controllers
|
||||||
|
|
||||||
// Unlisted
|
// Unlisted
|
||||||
to = new[] { to },
|
to = new[] { to },
|
||||||
cc = new [] { "https://www.w3.org/ns/activitystreams#Public" },
|
cc = new[] { "https://www.w3.org/ns/activitystreams#Public" },
|
||||||
|
|
||||||
//// Public
|
//// Public
|
||||||
//to = new[] { "https://www.w3.org/ns/activitystreams#Public" },
|
//to = new[] { "https://www.w3.org/ns/activitystreams#Public" },
|
||||||
|
@ -125,6 +126,7 @@ namespace BirdsiteLive.Controllers
|
||||||
return View("Index");
|
return View("Index");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
public static class HtmlHelperExtensions
|
public static class HtmlHelperExtensions
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Reference in a new issue