add identity page for CertificateRequest status code

This commit is contained in:
yggverse 2024-11-16 21:32:42 +02:00
parent 611addda42
commit 63f7f1c769
4 changed files with 68 additions and 0 deletions

View file

@ -55,6 +55,16 @@ impl Content {
status
}
/// Set new `content::Status` component for `Self` with new `status::Identity` preset
///
/// * action removes previous children component from `Self`
pub fn to_status_identity(&self) -> Status {
self.clean();
let status = Status::new_identity();
self.gobject.append(status.gobject());
status
}
/// Set new `content::Status` component for `Self` with new `status::Loading` preset
///
/// * action removes previous children component from `Self`