We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents c21853d + 35b06b3 commit 92d2227Copy full SHA for 92d2227
1 file changed
frontend/src/routes/security/permissions/index.tsx
@@ -0,0 +1,21 @@
1
+/**
2
+ * Copyright 2026 Redpanda Data, Inc.
3
+ *
4
+ * Use of this software is governed by the Business Source License
5
+ * included in the file https://github.com/redpanda-data/redpanda/blob/dev/licenses/bsl.md
6
7
+ * As of the Change Date specified in that file, in accordance with
8
+ * the Business Source License, use of this software will be governed
9
+ * by the Apache License, Version 2.0
10
+ */
11
+
12
+import { createFileRoute } from '@tanstack/react-router';
13
14
+import { PermissionsListTab } from '../../../components/pages/security/tabs/permissions-list-tab';
15
16
+export const Route = createFileRoute('/security/permissions/')({
17
+ staticData: {
18
+ title: 'Security',
19
+ },
20
+ component: PermissionsListTab,
21
+});
0 commit comments