mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-11-23 18:11:06 +08:00
Update rpc function to accept app folders list
This commit is contained in:
parent
2a1f335dc9
commit
341d370f9c
1 changed files with 6 additions and 2 deletions
|
|
@ -169,8 +169,12 @@ defmodule Livebook.TeamsRPC do
|
|||
|
||||
# Update resource
|
||||
|
||||
def update_authorization_group(node, authorization_group, attrs) do
|
||||
:erpc.call(node, TeamsRPC, :update_authorization_group, [authorization_group, attrs])
|
||||
def update_authorization_group(node, authorization_group, attrs, app_folders \\ []) do
|
||||
:erpc.call(node, TeamsRPC, :update_authorization_group, [
|
||||
authorization_group,
|
||||
attrs,
|
||||
app_folders
|
||||
])
|
||||
end
|
||||
|
||||
def update_user_info_groups(node, code, groups) do
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue