diff --git a/Dockerfile b/Dockerfile index 47430c9..dd87220 100644 --- a/Dockerfile +++ b/Dockerfile @@ -84,7 +84,7 @@ COPY starship.toml /root/.config/starship.toml RUN curl -sS https://starship.rs/install.sh | sh -s -- --yes # Configure shell -COPY .zcustomizations .inputrc ~/ +COPY .zcustomizations .inputrc /root/ RUN echo -e '\n. "$HOME/.zcustomizations"' >> ~/.zshrc && chsh -s /bin/zsh # Configure workdir and environment diff --git a/app/components/AppLayout.tsx b/app/components/AppLayout.tsx index 1b1dfbd..3316f81 100644 --- a/app/components/AppLayout.tsx +++ b/app/components/AppLayout.tsx @@ -11,7 +11,7 @@ import AppMeta from "./AppMeta"; import type { AppMetaProps } from "./AppMeta"; import AppHeader from "./AppHeader"; -import AppFooter from "./AppFooter"; +// import AppFooter from "./AppFooter"; import AppFlash from "./AppFlash"; import PageLayout from "./PageLayout"; import PageContainer from "./PageContainer"; @@ -123,7 +123,7 @@ const AppLayout: FC = ({ {content} - + {/* */} ); diff --git a/app/models/reservation.rb b/app/models/reservation.rb index 8f95246..cbc8632 100644 --- a/app/models/reservation.rb +++ b/app/models/reservation.rb @@ -24,6 +24,9 @@ class Reservation < ApplicationRecord include Identifiable + # == Attributes + enumerize :status, in: %i[pending confirmed cancelled] + # == Associations belongs_to :activity