diff --git a/src/Ombi/Controllers/StatusController.cs b/src/Ombi/Controllers/StatusController.cs
index 14ead2ba1..bc0fd3908 100644
--- a/src/Ombi/Controllers/StatusController.cs
+++ b/src/Ombi/Controllers/StatusController.cs
@@ -30,6 +30,7 @@ using System.Threading.Tasks;
using Microsoft.AspNetCore.Authorization;
using Microsoft.AspNetCore.Mvc;
using Ombi.Core.Settings;
+using Ombi.Helpers;
using Ombi.Settings.Settings.Models;
namespace Ombi.Controllers
@@ -57,6 +58,18 @@ namespace Ombi.Controllers
}
+ ///
+ /// Returns information about this ombi instance
+ ///
+ ///
+ [AllowAnonymous]
+ [HttpGet("info")]
+ public string GetInfo()
+ {
+ return AssemblyHelper.GetRuntimeVersion();
+ }
+
+
///
/// Checks to see if we have run through the wizard
///