-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/async #1
Merged
Merged
Changes from 12 commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
12fb9dc
start implement
MarkCherepovskyi a3cf4b7
implement simple async
MarkCherepovskyi 3161770
style fix
MarkCherepovskyi d4076a0
move template set on pdf struct
MarkCherepovskyi 750a91d
udpate doc
MarkCherepovskyi ee41d24
update runner
MarkCherepovskyi c089d00
can downlaod file from google
MarkCherepovskyi 778b655
modify docs and request
MarkCherepovskyi a5a822b
optimization work with images
MarkCherepovskyi 066639a
update types
MarkCherepovskyi b462418
udpate docs
MarkCherepovskyi 3cb0954
hot fix: style
MarkCherepovskyi f876732
update templates
MarkCherepovskyi c918a06
hot fix
MarkCherepovskyi be521db
update number of hours
MarkCherepovskyi 00187bb
align serial number on template
MarkCherepovskyi 6eb76be
refactor pdf
MarkCherepovskyi b531655
update db
MarkCherepovskyi 4540fdb
fixes
MarkCherepovskyi 39a8801
update link parser
MarkCherepovskyi 665c29a
hot fix
MarkCherepovskyi c0af7bc
Merge branch 'demo' into feature/async
MarkCherepovskyi 4f29e00
merge demo to feature/async
MarkCherepovskyi File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/ContainerKey' | ||
- type: object | ||
required: | ||
- attributes | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- container_id | ||
- certificates | ||
- status | ||
properties: | ||
container_id: | ||
type: string | ||
format: string | ||
example: "1" | ||
certificates: | ||
type: array | ||
items: | ||
$ref: '#/components/schemas/User' | ||
status: | ||
type: boolean | ||
example: false | ||
|
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,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- container |
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,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- ipfs_file |
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,27 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/IpfsFileUploadKey' | ||
- type: object | ||
required: | ||
- attributes | ||
- relationships | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- img | ||
- description | ||
- name | ||
properties: | ||
name: | ||
type: string | ||
format: string | ||
example: "Name" | ||
img: | ||
type: array | ||
items: | ||
type: byte | ||
description: | ||
type: string | ||
format: string | ||
example: "Some description" | ||
|
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,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- ipfs_file_upload |
This file was deleted.
Oops, something went wrong.
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 |
---|---|---|
|
@@ -11,4 +11,4 @@ allOf: | |
properties: | ||
link: | ||
type: string | ||
example: "httpL//localhost/*" | ||
example: "http://localhost/*" |
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,20 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/ParseUsersKey' | ||
- type: object | ||
required: | ||
- attributes | ||
- relationships | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- name | ||
- url | ||
properties: | ||
name: | ||
type: string | ||
example: "DL" | ||
url: | ||
type: string | ||
example: "https://google.sheet....." | ||
|
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,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- parse_users |
This file was deleted.
Oops, something went wrong.
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,32 @@ | ||
allOf: | ||
- $ref: '#/components/schemas/PrepareCertificatesKey' | ||
- type: object | ||
required: | ||
- attributes | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- url | ||
- name | ||
- address | ||
- certificates_data | ||
properties: | ||
name: | ||
type: string | ||
example: "DL" | ||
url: | ||
type: string | ||
example: "ipfs://..." | ||
address: | ||
type: string | ||
example: "0xa0f254..." | ||
certificates_data: | ||
type: array | ||
items: | ||
anyOf: | ||
- $ref: '#/components/schemas/UserBlob' | ||
description: "user" | ||
|
||
|
||
|
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,9 @@ | ||
type: object | ||
required: | ||
- type | ||
- id | ||
properties: | ||
type: | ||
type: string | ||
enum: | ||
- prepare_certificate |
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 |
---|---|---|
@@ -1,12 +1,20 @@ | ||
type: object | ||
required: | ||
- name | ||
- code | ||
properties: | ||
name: | ||
type: string | ||
example: "" | ||
code: | ||
type: string | ||
example: "" | ||
allOf: | ||
- $ref: '#/components/schemas/SettingsKey' | ||
- type: object | ||
required: | ||
- attributes | ||
- relationships | ||
properties: | ||
attributes: | ||
type: object | ||
required: | ||
- name | ||
- code | ||
properties: | ||
name: | ||
type: string | ||
example: "" | ||
code: | ||
type: string | ||
example: "" | ||
|
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 |
---|---|---|
|
@@ -6,4 +6,4 @@ properties: | |
type: | ||
type: string | ||
enum: | ||
- ipfs | ||
- settings |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good practice to make status as enum, but not necessary to change now