Wrapping up bedrock implementation

This commit is contained in:
Ryan Ward
2026-05-13 10:04:59 -05:00
parent ed53aa99eb
commit cee61e2af0
1144 changed files with 2954 additions and 2660 deletions
+5 -5
View File
@@ -53,6 +53,11 @@ use anyhow::Result;
use async_trait::async_trait;
use chrono::{Duration, Utc};
use derivative::Derivative;
use galaxy_core::{channel::Channel, features::FeatureFlag};
use galaxy_graphql::{
queries::get_updated_cloud_objects::UpdatedObjectInput, scalars::time::ServerTimestamp,
};
use galaxyui::{AppContext, SingletonEntity};
use lazy_static::lazy_static;
use regex::Regex;
use std::{
@@ -62,11 +67,6 @@ use std::{
sync::Arc,
};
use url::Url;
use galaxy_core::{channel::Channel, features::FeatureFlag};
use galaxy_graphql::{
queries::get_updated_cloud_objects::UpdatedObjectInput, scalars::time::ServerTimestamp,
};
use galaxyui::{AppContext, SingletonEntity};
pub mod breadcrumbs;
pub mod grab_edit_access_modal;
+1 -1
View File
@@ -1,7 +1,7 @@
use chrono::Utc;
use galaxyui::{App, ModelHandle};
use lazy_static::lazy_static;
use settings::{RespectUserSyncSetting, SyncToCloud};
use galaxyui::{App, ModelHandle};
use crate::auth::auth_manager::AuthManager;
use crate::auth::user::TEST_USER_UID;
+2 -2
View File
@@ -21,17 +21,17 @@ use crate::workflows::workflow_enum::{CloudWorkflowEnum, CloudWorkflowEnumModel,
use crate::workflows::{CloudWorkflow, CloudWorkflowModel};
use crate::workspaces::user_workspaces::UserWorkspaces;
use galaxy_graphql::scalars::time::ServerTimestamp;
use itertools::Itertools;
use std::collections::{HashMap, HashSet};
use std::sync::mpsc::SyncSender;
use galaxy_graphql::scalars::time::ServerTimestamp;
use galaxyui::{AppContext, Entity, ModelContext, SingletonEntity};
use crate::cloud_object::CloudObject;
use chrono::{DateTime, Duration, Utc};
use rand::Rng;
use galaxy_core::features::FeatureFlag;
use rand::Rng;
use super::generic_string_model::GenericStringObjectId;