aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs13
1 files changed, 13 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
index 95a26d78e..dccf2d24c 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/FSEController.cs
@@ -10,6 +10,7 @@ using Tango.BL.Entities;
using Tango.Core;
using Tango.Core.Cryptography;
using Tango.FSE.Web.Messages;
+using Tango.MachineService.Filters;
using Tango.Web.Controllers;
using Tango.Web.Helpers;
using Tango.Web.Security;
@@ -104,5 +105,17 @@ namespace Tango.MachineService.Controllers
PasswordChangeRequired = user.PasswordChangeRequired
};
}
+
+ [HttpPost]
+ [JwtTokenFilter]
+ public BugReportingInfoResponse GetBugReportInfo(BugReportingInfoRequest request)
+ {
+ return new BugReportingInfoResponse()
+ {
+ CollectionUrl = MachineServiceConfig.FSE_TFS_COLLECTION_URL,
+ PersonalToken = MachineServiceConfig.FSE_TFS_PERSONAL_TOKEN,
+ UserEmail = MachineServiceConfig.FSE_TFS_USER_EMAIL
+ };
+ }
}
}