mirror of
https://github.com/AppFlowy-IO/AppFlowy.git
synced 2025-08-22 07:40:26 +00:00

* chore: env config * chore: get user workspace * feat: enable postgres storage * chore: add new env * chore: add set env ffi * chore: pass env before backend init * chore: update * fix: ci tests * chore: commit the generate env file * chore: remove unused import
41 lines
1.1 KiB
Rust
41 lines
1.1 KiB
Rust
use strum_macros::Display;
|
|
|
|
use flowy_derive::{Flowy_Event, ProtoBuf_Enum};
|
|
use lib_dispatch::prelude::AFPlugin;
|
|
|
|
use crate::event_handler::*;
|
|
|
|
pub fn init() -> AFPlugin {
|
|
AFPlugin::new()
|
|
.name(env!("CARGO_PKG_NAME"))
|
|
.event(ConfigEvent::SetKeyValue, set_key_value_handler)
|
|
.event(ConfigEvent::GetKeyValue, get_key_value_handler)
|
|
.event(ConfigEvent::RemoveKeyValue, remove_key_value_handler)
|
|
.event(ConfigEvent::SetSupabaseConfig, set_supabase_config_handler)
|
|
.event(
|
|
ConfigEvent::SetCollabPluginConfig,
|
|
set_collab_plugin_config_handler,
|
|
)
|
|
}
|
|
|
|
#[derive(Debug, Clone, PartialEq, Eq, Hash, Display, ProtoBuf_Enum, Flowy_Event)]
|
|
#[event_err = "FlowyError"]
|
|
pub enum ConfigEvent {
|
|
#[event(input = "KeyValuePB")]
|
|
SetKeyValue = 0,
|
|
|
|
#[event(input = "KeyPB", output = "KeyValuePB")]
|
|
GetKeyValue = 1,
|
|
|
|
#[event(input = "KeyPB")]
|
|
RemoveKeyValue = 2,
|
|
|
|
/// Set the supabase config. It will be written to the environment variables.
|
|
/// Check out the `write_to_env` of [SupabaseConfigPB].
|
|
#[event(input = "SupabaseConfigPB")]
|
|
SetSupabaseConfig = 3,
|
|
|
|
#[event(input = "CollabPluginConfigPB")]
|
|
SetCollabPluginConfig = 4,
|
|
}
|