aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Web/Tango.MachineService/Controllers
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2019-02-25 11:26:06 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2019-02-25 11:26:06 +0200
commite068fa9d45e3ad6da977a08d722453756c38eee7 (patch)
tree775f8e4313105536dbaab1adf325c9655a0de750 /Software/Visual_Studio/Web/Tango.MachineService/Controllers
parentcc7cafd24fdb59afc78d198062c469344177f553 (diff)
downloadTango-e068fa9d45e3ad6da977a08d722453756c38eee7.tar.gz
Tango-e068fa9d45e3ad6da977a08d722453756c38eee7.zip
Updated PMR.
Diffstat (limited to 'Software/Visual_Studio/Web/Tango.MachineService/Controllers')
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs2
-rw-r--r--Software/Visual_Studio/Web/Tango.MachineService/Controllers/PPCController.cs4
2 files changed, 3 insertions, 3 deletions
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs
index 29cc067d6..1a66d0fe6 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/MachineStudioController.cs
@@ -206,7 +206,7 @@ namespace Tango.MachineService.Controllers
/// <exception cref="System.ArgumentException">Invalid Token.</exception>
[HttpPost]
[JwtTokenFilter]
- public UploadCompletedResponse NotifyUploadCompleted(UploadCompletedRequest request)
+ public UploadCompletedResponse NotifyVersionUploadCompleted(UploadCompletedRequest request)
{
MachineStudioPendingUpload upload = _pendingUploads.FirstOrDefault(x => x.Token == request.Token);
diff --git a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/PPCController.cs b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/PPCController.cs
index 0f36fa040..b937afbb0 100644
--- a/Software/Visual_Studio/Web/Tango.MachineService/Controllers/PPCController.cs
+++ b/Software/Visual_Studio/Web/Tango.MachineService/Controllers/PPCController.cs
@@ -190,7 +190,7 @@ namespace Tango.MachineService.Controllers
[HttpPost]
[JwtTokenFilter]
- public CheckForUpdateResponse CheckForUpdate(CheckForUpdateRequest request)
+ public CheckForUpdateResponse CheckForUpdates(CheckForUpdateRequest request)
{
CheckForUpdateResponse response = new CheckForUpdateResponse();
@@ -364,7 +364,7 @@ namespace Tango.MachineService.Controllers
[HttpPost]
[JwtTokenFilter]
- public UploadCompletedResponse NotifyUploadCompleted(UploadCompletedRequest request)
+ public UploadCompletedResponse NotifyVersionUploadCompleted(UploadCompletedRequest request)
{
PPCPendingUpload upload = _pendingUploads.FirstOrDefault(x => x.Token == request.Token);