Skip to content

Commit

Permalink
Removed django flatpages and sites (#503)
Browse files Browse the repository at this point in the history
  • Loading branch information
mmihalik authored Nov 24, 2024
1 parent 5536ba7 commit 4e53081
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/Admin/Admin.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ export const Admin: FC = () => {
<ReactAdmin authProvider={authProvider} dataProvider={dataProvider} layout={AdminLayout}>
<Resource name="cms/post" list={PostList} edit={PostEdit} show={PostShow} create={PostCreate} />
<Resource
name="base/flat-page"
name="cms/flat-page"
list={FlatpageList}
edit={FlatpageEdit}
show={FlatpageShow}
Expand Down
2 changes: 1 addition & 1 deletion src/pages/strom/[page].tsx
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ export const seminarBasedGetServerSideProps =
if (query?.page && typeof query.page === 'string') {
const requestedUrl = query.page
const {data} = await axios.get<FlatPage | undefined>(
`${process.env.NEXT_PUBLIC_BE_PROTOCOL}://${process.env.NEXT_PUBLIC_BE_HOSTNAME}:${process.env.NEXT_PUBLIC_BE_PORT}/base/flat-page/by-url/${requestedUrl}`,
`${process.env.NEXT_PUBLIC_BE_PROTOCOL}://${process.env.NEXT_PUBLIC_BE_HOSTNAME}:${process.env.NEXT_PUBLIC_BE_PORT}/cms/flat-page/by-url/${requestedUrl}`,
)
// ked stranka neexistuje, vrati sa `content: ""`. teraz renderujeme stranku len ked je content neprazdny a server rovno vrati redirect.
// druha moznost by bola nechat prazdny content handlovat clienta - napriklad zobrazit custom error, ale nechat usera na neplatnej stranke.
Expand Down

0 comments on commit 4e53081

Please sign in to comment.