-
-
Notifications
You must be signed in to change notification settings - Fork 367
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7927 from Jarsen136/issue-7920
feat: Download template in massmint onboard
- Loading branch information
Showing
5 changed files
with
75 additions
and
4 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
file,name,description,price | ||
art1.png,Art #1,Description for the Art #1,1 | ||
art2.png,Art #2,Description for the Art #2,1 | ||
art3.png,Art #3,Description for the Art #3,1 | ||
art4.png,Art #4,Description for the Art #4,1 |
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,26 @@ | ||
[ | ||
{ | ||
"file": "art1.png", | ||
"name": "Art #1", | ||
"description": "Description for the Art #1", | ||
"price": 1 | ||
}, | ||
{ | ||
"file": "art2.png", | ||
"name": "Art #2", | ||
"description": "Description for the Art #2", | ||
"price": 1 | ||
}, | ||
{ | ||
"file": "art3.png", | ||
"name": "Art #3", | ||
"description": "Description for the Art #3", | ||
"price": 1 | ||
}, | ||
{ | ||
"file": "art4.png", | ||
"name": "Art #4", | ||
"description": "Description for the Art #4", | ||
"price": 1 | ||
} | ||
] |
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 @@ | ||
file: art1.png | ||
name: Art #1 | ||
description: Description for the Art #1 | ||
price: 1 | ||
|
||
|
||
file: art2.png | ||
name: Art #2 | ||
description: Description for the Art #2 | ||
price: 1 | ||
|
||
|
||
file: art3.png | ||
name: Art #3 | ||
description: Description for the Art #3 | ||
price: 1 | ||
|
||
|
||
file: art4.png | ||
name: Art #4 | ||
description: Description for the Art #4 | ||
price: 1 |