Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions crates/tauri-plugin-holochain/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ pub use error::{Error, Result};
use hc_live_file::*;
pub use holochain_runtime::*;

const ZOME_CALL_SIGNER_INITIALIZATION_SCRIPT: &'static str = include_str!("../zome-call-signer.js");
pub const ZOME_CALL_SIGNER_INITIALIZATION_SCRIPT: &'static str = include_str!("../zome-call-signer.js");

/// Access to the holochain APIs.
pub struct HolochainPlugin<R: Runtime> {
Expand Down Expand Up @@ -176,7 +176,7 @@ impl<R: Runtime> HolochainPlugin<R> {
Ok(admin_ws)
}

fn get_allowed_origins(&self,
pub fn get_allowed_origins(&self,
app_id: &InstalledAppId,
main_window: bool
) -> AllowedOrigins {
Expand Down