Allow gallery featuring, add gallery images to search, rename rejection reasons, transfer ownership route (#226)

This commit is contained in:
Geometrically
2021-07-27 16:50:07 -07:00
committed by GitHub
parent bc983162f3
commit 76b62eda3a
16 changed files with 1414 additions and 1130 deletions

View File

@@ -76,6 +76,7 @@ pub struct UploadSearchProject {
pub license: String,
pub client_side: String,
pub server_side: String,
pub gallery: Vec<String>,
/// RFC 3339 formatted creation date of the project
pub date_created: DateTime<Utc>,
@@ -117,6 +118,7 @@ pub struct ResultSearchProject {
pub license: String,
pub client_side: String,
pub server_side: String,
pub gallery: Vec<String>,
}
impl Document for UploadSearchProject {