notify using signal, and only email as fallback
Fixes chat room selector in web interface,
This commit is contained in:
parent
8414ab7ab3
commit
6b8180edde
4 changed files with 71 additions and 38 deletions
14
src/Yavsc.Abstract/IT/BugReport.cs
Normal file
14
src/Yavsc.Abstract/IT/BugReport.cs
Normal 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; }
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue