Jost
Jost
It's passed in as a HoloNETData object and sent over the admin websocket. The `type` is [`grant_zome_call_capability`](https://github.com/holochain/holochain-client-js/blob/main/src/api/admin/websocket.ts#L260).
I don't have an example, but it's an array of tuples containing `ZomeName` and `FunctionName` which are aliases for `string`. So in the end it's ```javascript const functions = [["zome_name1",...
> I can't see any check done in the app api call to enforce this? No, if you want to authorize only certain functions, it's up to the happ dev...
> Well all makes sense apart from the functions, because I can't see why the admin api takes a list of functions if it is later ignored or not enforced?...
> > ``` > > export type GrantedFunctions = > > | { [GrantedFunctionsType.All]: null } > > | { [GrantedFunctionsType.Listed]: [ZomeName, FunctionName][] }; > > ``` > > >...
> Hey, hope you good @jost-s ? Yes, thanks =) > The celldata is still null even after updating to the newest format? The agent_pub_key is fine though so I...
I'm also seeing that installing an app from the local file system, using the JS client, takes unreasonably long. I'm testing this on the upcoming wasmer branch.
What about the Holochain clients? Currently they're under CAL and this sounds like that's appropriate.
JS client is going to be under CAL for the time being, Rust client and Tryorama under MIT.
I've updated JS and Rust client and Tryorama.