Skip to content

Commit 92d2227

Browse files
authored
Merge pull request #2468 from redpanda-data/fix/register-page-under-feaure-flag
Register Permissions page under feature flag
2 parents c21853d + 35b06b3 commit 92d2227

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

  • frontend/src/routes/security/permissions
Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)