@@ -125,6 +125,7 @@ upload_metadata_parser.add_argument('name', type=str, help='An optional name for
...
@@ -125,6 +125,7 @@ upload_metadata_parser.add_argument('name', type=str, help='An optional name for
upload_metadata_parser.add_argument('local_path',type=str,help='Use a local file on the server.',location='args')
upload_metadata_parser.add_argument('local_path',type=str,help='Use a local file on the server.',location='args')
upload_metadata_parser.add_argument('token',type=str,help='Upload token to authenticate with curl command.',location='args')
upload_metadata_parser.add_argument('token',type=str,help='Upload token to authenticate with curl command.',location='args')
upload_metadata_parser.add_argument('file',type=FileStorage,help='The file to upload.',location='files')
upload_metadata_parser.add_argument('file',type=FileStorage,help='The file to upload.',location='files')
upload_metadata_parser.add_argument('publish_directly',type=bool,help='Set this parameter to publish the upload directly after processing.',location='args')
upload_metadata_parser.add_argument('oasis_upload_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the upload_id.',location='args')
upload_metadata_parser.add_argument('oasis_upload_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the upload_id.',location='args')
upload_metadata_parser.add_argument('oasis_uploader_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the uploader\' id.',location='args')
upload_metadata_parser.add_argument('oasis_uploader_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the uploader\' id.',location='args')
upload_metadata_parser.add_argument('oasis_deployment_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the OASIS\' deployment id.',location='args')
upload_metadata_parser.add_argument('oasis_deployment_id',type=str,help='Use if this is an upload from an OASIS to the central NOMAD and set it to the OASIS\' deployment id.',location='args')
...
@@ -224,7 +225,7 @@ class UploadListResource(Resource):
...
@@ -224,7 +225,7 @@ class UploadListResource(Resource):