Page Menu
Home
DevCentral
Search
Configure Global Search
Log In
Files
F6591590
D1874.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D1874.diff
View Options
diff --git a/src/app.rs b/src/app.rs
--- a/src/app.rs
+++ b/src/app.rs
@@ -10,6 +10,7 @@
favicon,
get_registry_stats,
get_repository_info,
+ get_all_repositories,
];
MinimalApplication::start_application(routes);
diff --git a/src/registry.rs b/src/registry.rs
--- a/src/registry.rs
+++ b/src/registry.rs
@@ -90,6 +90,16 @@
Some(repository)
}
+
+ pub fn get_all_repositories (&self) -> Vec<Repository> {
+ let path = self.get_repositories_path();
+ let path = Path::new(&path);
+
+ get_subdirectories_names(path)
+ .iter()
+ .filter_map(|name| self.get_repository(&name))
+ .collect()
+ }
}
/* -------------------------------------------------------------
diff --git a/src/requests.rs b/src/requests.rs
--- a/src/requests.rs
+++ b/src/requests.rs
@@ -46,3 +46,10 @@
}
}
}
+
+#[get("/repository/getAll")]
+pub fn get_all_repositories() -> ApiJsonResponse<Vec<Repository>> {
+ Registry::with_default_location()
+ .get_all_repositories()
+ .into_json_response()
+}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Sat, Apr 5, 14:40 (6 h, 15 m)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
2545369
Default Alt Text
D1874.diff (1 KB)
Attached To
Mode
D1874: List all repositories
Attached
Detach File
Event Timeline
Log In to Comment