Skip to content

Commit

Permalink
WIP: Add series acl editor
Browse files Browse the repository at this point in the history
  • Loading branch information
owi92 committed Jan 15, 2025
1 parent b86b1ea commit e5eeb1c
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
2 changes: 2 additions & 0 deletions frontend/src/router.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ import { ManageVideoAccessRoute } from "./routes/manage/Video/Access";
import { DirectPlaylistOCRoute, DirectPlaylistRoute } from "./routes/Playlist";
import { ManageSeriesRoute } from "./routes/manage/Series";
import { ManageSeriesDetailsRoute } from "./routes/manage/Series/Details";
import { ManageSeriesAccessRoute } from "./routes/manage/Series/Access";



Expand Down Expand Up @@ -67,6 +68,7 @@ const {
ManageVideoTechnicalDetailsRoute,
ManageRealmRoute,
ManageSeriesRoute,
ManageSeriesAccessRoute,
ManageSeriesDetailsRoute,
UploadRoute,
AddChildRoute,
Expand Down
12 changes: 12 additions & 0 deletions frontend/src/routes/manage/Series/Access.tsx
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
import { LuHammer } from "react-icons/lu";
import { makeManageSeriesRoute } from "./Shared";

export const ManageSeriesAccessRoute = makeManageSeriesRoute(
"acl",
"/access",
() => <div css={{
textAlign: "center",
}}>
<h2><LuHammer /> Currently under construction <LuHammer /></h2>
</div>
);

0 comments on commit e5eeb1c

Please sign in to comment.