mirror of
https://github.com/grafana/grafana.git
synced 2025-02-16 18:34:52 -06:00
This PR adds an audit table for public dashboards allowing a user to view all public dashboards on an instance of grafana. The public dashboards team is working on a proposal for adding RBAC support to the audit table for 9.3 Co-authored-by: juanicabanas <juan.cabanas@grafana.com>
18 lines
406 B
TypeScript
18 lines
406 B
TypeScript
import React from 'react';
|
|
|
|
import { Page } from 'app/core/components/Page/Page';
|
|
|
|
import { ListPublicDashboardTable } from './components/PublicDashboardListTable';
|
|
|
|
export const ListPublicDashboardPage = ({}) => {
|
|
return (
|
|
<Page navId="dashboards/public">
|
|
<Page.Contents>
|
|
<ListPublicDashboardTable />
|
|
</Page.Contents>
|
|
</Page>
|
|
);
|
|
};
|
|
|
|
export default ListPublicDashboardPage;
|