1
0
Fork 0

remove object_format_name for now

forgejo currently has a bug where the `object_format_name` field is
always an empty string. for now, just don't include it.

should be fixed in https://codeberg.org/forgejo/forgejo/pulls/3464
This commit is contained in:
Cyborus 2024-04-25 18:19:10 -04:00
parent 9b784f1f95
commit 736dd72993
No known key found for this signature in database
2 changed files with 1 additions and 35 deletions

View file

@ -686,8 +686,6 @@ pub struct CreateRepoOption {
pub license: Option<String>,
/// Name of the repository to create
pub name: String,
/// ObjectFormatName of the underlying git repository
pub object_format_name: CreateRepoOptionObjectFormatName,
/// Whether the repository is private
pub private: Option<bool>,
/// Readme of the repository to create
@ -698,15 +696,6 @@ pub struct CreateRepoOption {
pub trust_model: Option<CreateRepoOptionTrustModel>,
}
/// ObjectFormatName of the underlying git repository
#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub enum CreateRepoOptionObjectFormatName {
#[serde(rename = "sha1")]
Sha1,
#[serde(rename = "sha256")]
Sha256,
}
/// TrustModel of the repository
#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
@ -2253,8 +2242,6 @@ pub struct Repository {
#[serde(with = "time::serde::rfc3339::option")]
pub mirror_updated: Option<time::OffsetDateTime>,
pub name: Option<String>,
/// ObjectFormatName of the underlying git repository
pub object_format_name: Option<RepositoryObjectFormatName>,
pub open_issues_count: Option<u64>,
pub open_pr_counter: Option<u64>,
#[serde(deserialize_with = "crate::none_if_blank_url")]
@ -2278,15 +2265,6 @@ pub struct Repository {
pub wiki_branch: Option<String>,
}
/// ObjectFormatName of the underlying git repository
#[derive(Debug, Clone, Copy, PartialEq, Eq, serde::Serialize, serde::Deserialize)]
pub enum RepositoryObjectFormatName {
#[serde(rename = "sha1")]
Sha1,
#[serde(rename = "sha256")]
Sha256,
}
/// RepositoryMeta basic repository information
#[derive(Debug, Clone, PartialEq, serde::Serialize, serde::Deserialize)]
pub struct RepositoryMeta {