fix: walk-in page to use new arcipelago slug

This commit is contained in:
JasterV 2026-02-07 22:32:15 +01:00
parent 687f0e3b19
commit c9c5255642
3 changed files with 5 additions and 5 deletions

View file

@ -7,7 +7,7 @@ defmodule SpazioSolazzoWeb.Admin.WalkInLive do
alias SpazioSolazzo.BookingSystem alias SpazioSolazzo.BookingSystem
def mount(_params, _session, socket) do def mount(_params, _session, socket) do
{:ok, space} = BookingSystem.get_space_by_slug("coworking") {:ok, space} = BookingSystem.get_space_by_slug("arcipelago")
today = Date.utc_today() today = Date.utc_today()
first_day = Date.beginning_of_month(today) first_day = Date.beginning_of_month(today)

View file

@ -7,8 +7,8 @@ defmodule SpazioSolazzoWeb.Admin.WalkInLiveSimpleTest do
setup do setup do
{:ok, space} = {:ok, space} =
BookingSystem.create_space( BookingSystem.create_space(
"Coworking", "Arcipelago",
"coworking", "arcipelago",
"Coworking space", "Coworking space",
5 5
) )

View file

@ -7,8 +7,8 @@ defmodule SpazioSolazzoWeb.Admin.WalkInLiveTest do
setup do setup do
{:ok, space} = {:ok, space} =
BookingSystem.create_space( BookingSystem.create_space(
"Coworking", "Arcipelago",
"coworking", "arcipelago",
"Coworking space", "Coworking space",
5 5
) )