Skip to content

Commit

Permalink
Add pages activity
Browse files Browse the repository at this point in the history
  • Loading branch information
guerler committed Apr 10, 2024
1 parent ce7ef77 commit 5c9e127
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 1 deletion.
2 changes: 2 additions & 0 deletions client/src/components/plugins/icons.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ import {
faEye,
faFile,
faFileArchive,
faFileContract,
faFileExport,
faFilter,
faFolder,
Expand Down Expand Up @@ -76,6 +77,7 @@ library.add(
faExternalLinkAlt,
faEye,
faFileArchive,
faFileContract,
faFileExport,
faFilter,
faFile,
Expand Down
14 changes: 13 additions & 1 deletion client/src/stores/activitySetup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,19 @@ export const Activities = [
title: "Datasets",
tooltip: "Show all datasets",
to: "/datasets/list",
visible: false,
visible: true,
},
{
anonymous: false,
description: "Display and create new Pages.",
icon: "fa-file-contract",
id: "pages",
mutable: false,
optional: true,
title: "Pages",
tooltip: "Show all pages",
to: "/pages/list",
visible: true,
},
];

Expand Down

0 comments on commit 5c9e127

Please sign in to comment.