Feature: Disco ICT Online Services - Job Publishing

When warranty jobs are submitted (via plugins) users can choose to
include attachments. These attachments are submitted to Disco ICT Online
Services. A secure link is then provided to the plugin so the
attachments can be retrieved.
This commit is contained in:
Gary Sharp
2014-07-24 20:58:48 +10:00
parent 6700d092b3
commit 7cbed23a74
24 changed files with 1088 additions and 91 deletions
@@ -0,0 +1,15 @@

namespace Disco.Models.Services.Interop.DiscoServices
{
public class PublishJobResult
{
public bool Success { get; set; }
public int Id { get; set; }
public string Secret { get; set; }
public string DeepLink { get; set; }
public string PublishMessage { get; set; }
public string ErrorMessage { get; set; }
}
}
@@ -11,7 +11,7 @@ namespace Disco.Models.Services.Interop.DiscoServices
public bool IsBetaDeployment { get; set; }
public string OrganisationName { get; set; }
public string BroadbandDoeWanId { get; set; }
public string VicEduDeptWanId { get; set; }
public List<StatisticInt> Stat_JobCounts { get; set; }
public List<StatisticInt> Stat_OpenJobCounts { get; set; }