notify using signal, and only email as fallback

Fixes chat room selector in web interface,
This commit is contained in:
Paul Schneider 2019-05-18 18:00:02 +01:00
commit 6b8180edde
4 changed files with 71 additions and 38 deletions

View file

@ -0,0 +1,14 @@
using System.ComponentModel.DataAnnotations;
namespace Yavsc.ApiControllers
{
public class BugReport {
[Required]
public string ApiKey { get ; set; }
[Required]
public string Component { get ; set; }
[Required][StringLength(1024)]
public string ExceptionObjectJson { get ; set; }
}
}