Wrapping up bedrock implementation
This commit is contained in:
@@ -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,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;
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user