From 9dd69ecb7004d50b31f9dcbd907f5dfb2115e960 Mon Sep 17 00:00:00 2001 From: Alexandre de Souza Date: Tue, 15 Jul 2025 16:58:59 -0300 Subject: [PATCH] Don't validate if the app isn't permanent --- lib/livebook/apps.ex | 2 ++ 1 file changed, 2 insertions(+) diff --git a/lib/livebook/apps.ex b/lib/livebook/apps.ex index b8260a9a6..9f6eff84d 100644 --- a/lib/livebook/apps.ex +++ b/lib/livebook/apps.ex @@ -86,6 +86,8 @@ defmodule Livebook.Apps do Livebook.Hubs.TeamClient.user_app_access?(id, user.groups, slug) end + def authorized?(%{permanent: false}, _user), do: true + @doc """ Updates the given app info across the cluster. """