-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
ADD: Support for multi-file submissions and result versions (#97)
* UPDATE: checkpoint changes * FIX: dynamic graphql mutations for different IPA versions * FIX: check for optional kwarg
- Loading branch information
1 parent
8f8960d
commit 8321f13
Showing
5 changed files
with
191 additions
and
41 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
from indico.types import BaseType | ||
|
||
|
||
class SubmissionFile(BaseType): | ||
f""" | ||
A Submission File in the Indico Platform. | ||
Submissions files represent a single document, and can be grouped together under | ||
a single submission to a submission to a workflow. | ||
Attributes: | ||
id (int): the Submission file id | ||
filepath (str): URL of the input datafile within the Indico Platform. | ||
filename (str): name of the original file | ||
submission_id (int): the parent Submission id | ||
""" | ||
|
||
id: int | ||
filepath: str | ||
filename: str | ||
submission_id: int |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters