From 06301a6ad9bbc7d9869368f8d119c5360c28866d Mon Sep 17 00:00:00 2001 From: Stefano Pigozzi Date: Wed, 20 Oct 2021 20:18:14 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Make=20lab=5Furl=20and=20legacy?= =?UTF-8?q?=5Fnotebook=5Furl=20member=20fields=20(fix=20#79)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit (didn't I already do this?) --- backend/sophon/notebooks/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/backend/sophon/notebooks/models.py b/backend/sophon/notebooks/models.py index 61b89be..14fcb10 100644 --- a/backend/sophon/notebooks/models.py +++ b/backend/sophon/notebooks/models.py @@ -133,8 +133,6 @@ class Notebook(SophonGroupModel): "locked_by", "container_image", "is_running", - "lab_url", - "legacy_notebook_url", } @classmethod @@ -144,6 +142,8 @@ class Notebook(SophonGroupModel): """ return { "jupyter_token", + "lab_url", + "legacy_notebook_url", } @classmethod