From f37f33512046707eef69a2cb3944338de819439d Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Sat, 31 Aug 2019 12:22:42 -0400 Subject: [PATCH] allow alive check on cloud an self host --- src/Notifications/Controllers/SendController.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Notifications/Controllers/SendController.cs b/src/Notifications/Controllers/SendController.cs index 2b6149fd74..d9a32d3feb 100644 --- a/src/Notifications/Controllers/SendController.cs +++ b/src/Notifications/Controllers/SendController.cs @@ -23,6 +23,7 @@ namespace Bit.Notifications [HttpGet("~/alive")] [HttpGet("~/now")] [AllowAnonymous] + [SelfHosted(SelfHostedOnly = false, NotSelfHostedOnly = false)] public DateTime GetAlive() { return DateTime.UtcNow;