Skip to content

Commit 881ea91

Browse files
Make all repo fields public
1 parent f962bb6 commit 881ea91

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

src/repository.rs

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,15 +7,15 @@ use std::path::PathBuf;
77
#[derive(Clone, Deserialize, Serialize, Debug)]
88
#[serde(rename_all = "camelCase")]
99
pub struct Repository {
10-
slug: String,
11-
id: u64,
12-
name: String,
13-
scm_id: String,
14-
state: String,
15-
status_message: String,
16-
forkable: bool,
17-
project: ProjectRef,
18-
public: bool,
10+
pub slug: String,
11+
pub id: u64,
12+
pub name: String,
13+
pub scm_id: String,
14+
pub state: String,
15+
pub status_message: String,
16+
pub forkable: bool,
17+
pub project: ProjectRef,
18+
pub public: bool,
1919
}
2020

2121
impl fmt::Display for Repository {

0 commit comments

Comments
 (0)