Skip to content

Commit 34078a8

Browse files
committed
feat: add festival management WIP
1 parent 3b5fe12 commit 34078a8

17 files changed

+2520
-138
lines changed

.claude/settings.local.json

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"permissions": {
3+
"allow": [
4+
"Bash(npm run build:*)",
5+
"Bash(npm run test:e2e:*)",
6+
"Bash(rm:*)",
7+
"Bash(npm run lint)"
8+
],
9+
"deny": []
10+
}
11+
}

src/App.tsx

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ const App = () => (
3131
<Route path="/groups/:groupId" element={<GroupDetail />} />
3232
<Route path="/schedule" element={<Schedule />} />
3333
<Route path="/admin" element={<Admin />} />
34+
<Route path="/admin/:tab" element={<Admin />} />
35+
<Route path="/admin/festivals/:festivalId/:subtab" element={<Admin />} />
3436
<Route path="/privacy" element={<PrivacyPolicy />} />
3537
<Route path="/terms" element={<TermsOfService />} />
3638
<Route path="/cookies" element={<CookiePolicy />} />

0 commit comments

Comments
 (0)