Skip to content

Commit

Permalink
Server Updates
Browse files Browse the repository at this point in the history
  • Loading branch information
iemam committed Jul 15, 2019
1 parent 51af89d commit ab3653b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PlatformTM-server
Submodule PlatformTM-server updated 83 files
+138 −13 PlatformTM.API/Controllers/AccountController.cs
+90 −0 PlatformTM.API/Controllers/AnalysisDatasetController.cs
+28 −5 PlatformTM.API/Controllers/CheckoutController.cs
+28 −58 PlatformTM.API/Controllers/DataExplorerController.cs
+37 −14 PlatformTM.API/Controllers/DatasetController.cs
+59 −0 PlatformTM.API/Controllers/DescriptorController.cs
+53 −34 PlatformTM.API/Controllers/ExportController.cs
+21 −28 PlatformTM.API/Controllers/FileController.cs
+0 −14 PlatformTM.API/Controllers/HomeController.cs
+26 −16 PlatformTM.API/Controllers/ProjectController.cs
+71 −0 PlatformTM.API/Controllers/QueryController.cs
+7 −2 PlatformTM.API/Controllers/TokenController.cs
+0 −81 PlatformTM.API/Controllers/UserDatasetController.cs
+7 −6 PlatformTM.API/PlatformTM.API.csproj
+1 −6 PlatformTM.API/PlatformTM.API.csproj.user
+3 −4 PlatformTM.API/Program.cs
+23 −0 PlatformTM.API/Properties/PublishProfiles/CustomProfile.pubxml
+113 −0 PlatformTM.API/Properties/PublishProfiles/CustomProfile.pubxml.user
+23 −0 PlatformTM.API/Properties/PublishProfiles/ftp.pubxml
+113 −0 PlatformTM.API/Properties/PublishProfiles/ftp.pubxml.user
+3 −2 PlatformTM.API/Properties/launchSettings.json
+17 −4 PlatformTM.API/Startup.cs
+1 −1 PlatformTM.API/Web.config
+11 −10 PlatformTM.API/appsettings.json
+3 −1 PlatformTM.Core/Domain/Interfaces/IRepository.cs
+10 −0 PlatformTM.Core/Domain/Model/DatasetModel/AnnotatedDataFile.cs
+3 −0 PlatformTM.Core/Domain/Model/DatasetModel/DataFile.cs
+36 −2 PlatformTM.Core/Domain/Model/DatasetModel/Dataset.cs
+14 −0 PlatformTM.Core/Domain/Model/DatasetModel/DatasetDescriptor.cs
+13 −0 PlatformTM.Core/Domain/Model/DatasetModel/ISATAB/IsaSampleDescriptor.cs
+10 −0 PlatformTM.Core/Domain/Model/DatasetModel/SDTM/SdtmEventsDatasetDescriptor.cs
+24 −0 PlatformTM.Core/Domain/Model/DatasetModel/SDTM/SdtmFindingDataset.cs
+9 −0 PlatformTM.Core/Domain/Model/DatasetModel/SDTM/SdtmRowDescriptor.cs
+2 −1 PlatformTM.Core/Domain/Model/DatasetModel/VariableDefinition.cs
+16 −0 PlatformTM.Core/Domain/Model/ObservationModel/CodedQualifiedField.cs
+14 −0 PlatformTM.Core/Domain/Model/ObservationModel/NumericMeasureQF.cs
+20 −0 PlatformTM.Core/Domain/Model/Users/Datasets/AnalysisDataset.cs
+22 −0 PlatformTM.Core/Domain/Model/Users/Datasets/ExportFile.cs
+0 −70 PlatformTM.Core/Domain/Model/Users/Datasets/UserDataset.cs
+6 −2 PlatformTM.Core/PlatformTM.Core.csproj
+8 −0 PlatformTM.Data/EntityConfigurations/DatafileConfig.cs
+7 −5 PlatformTM.Data/EntityConfigurations/VariableQualifierConfig.cs
+10 −9 PlatformTM.Data/PlatformTM.Data.csproj
+28 −19 PlatformTM.Data/PlatformTMdbContext.cs
+3 −2 PlatformTM.Data/Repositories/GenericMongoRepository.cs
+15 −0 PlatformTM.Data/Repositories/GenericRepository.cs
+9 −0 PlatformTM.Services/Configuration/AuthMessageSenderOptions.cs
+1 −0 PlatformTM.Services/DTOs/AssayDTO.cs
+20 −0 PlatformTM.Services/DTOs/AssayVM.cs
+1 −0 PlatformTM.Services/DTOs/DataExportObject.cs
+16 −0 PlatformTM.Services/DTOs/DatasetVM.cs
+5 −3 PlatformTM.Services/DTOs/DirectoryDTO.cs
+2 −0 PlatformTM.Services/DTOs/Explorer/CombinedQueryDTO.cs
+21 −7 PlatformTM.Services/DTOs/Explorer/SubjectExplorerDTO.cs
+23 −0 PlatformTM.Services/DTOs/Export/AnalysisDatasetDTO.cs
+1 −11 PlatformTM.Services/DTOs/Export/DatasetField.cs
+18 −0 PlatformTM.Services/DTOs/Export/ExportFileDTO.cs
+30 −0 PlatformTM.Services/DTOs/Export/ExportFileDefinition.cs
+1 −0 PlatformTM.Services/DTOs/FileDTO.cs
+21 −0 PlatformTM.Services/DTOs/FileVM.cs
+0 −57 PlatformTM.Services/DTOs/TreeNodeDTO.cs
+0 −84 PlatformTM.Services/DTOs/UserDatasetDTO.cs
+5 −14 PlatformTM.Services/PlatformTM.Services.csproj
+7 −7 PlatformTM.Services/Services/ActivityService.cs
+82 −0 PlatformTM.Services/Services/AnalysisDatasetService.cs
+9 −9 PlatformTM.Services/Services/AssayService.cs
+3 −3 PlatformTM.Services/Services/CacheService.cs
+314 −217 PlatformTM.Services/Services/CheckoutService.cs
+389 −116 PlatformTM.Services/Services/DataExplorerService.cs
+373 −0 PlatformTM.Services/Services/DatasetDescriptorService.cs
+56 −368 PlatformTM.Services/Services/DatasetService.cs
+296 −1,195 PlatformTM.Services/Services/ExportService.cs
+117 −68 PlatformTM.Services/Services/FileService.cs
+35 −0 PlatformTM.Services/Services/HelperService/EmailService.cs
+41 −0 PlatformTM.Services/Services/HelperService/IOhelper.cs
+108 −0 PlatformTM.Services/Services/Loading/SDTM/SDTMreader.cs
+94 −28 PlatformTM.Services/Services/ProjectService.cs
+107 −43 PlatformTM.Services/Services/QueryService.cs
+0 −168 PlatformTM.Services/Services/UserDatasetService.cs
+48 −5 PlatformTM.Services/Services/UserManagement/UserAccountService.cs
+107 −83 PlatformTM.Services/Services/UserManagement/UserStore.cs
+17 −0 PlatformTM.Services/ViewModels/DriveVM.cs
+14 −0 PlatformTM.Services/ViewModels/FileContentVM.cs
2 changes: 1 addition & 1 deletion PlatformTM-web
Submodule PlatformTM-web updated 222 files

0 comments on commit ab3653b

Please sign in to comment.