Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 0 additions & 11 deletions src/lib/commandCenter/searchers/teams.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,17 +33,6 @@ export const teamSearcher = (async (query: string) => {
},
group: 'teams',
nested: true
},

{
label: 'Go to activity',
callback: () => {
goto(
`${base}/project-${page.params.region}-${page.params.project}/auth/teams/team-${teams[0].$id}/activity`
);
},
group: 'teams',
nested: true
}
];
}
Expand Down
10 changes: 0 additions & 10 deletions src/lib/commandCenter/searchers/users.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,16 +34,6 @@ export const userSearcher = (async (query: string) => {
nested: true,
icon: IconTrash
},
{
label: 'Go to activity',
callback: () => {
goto(
`${base}/project-${page.params.region}-${page.params.project}/auth/user-${users[0].$id}/activity`
);
},
group: 'users',
nested: true
},
{
label: 'Go to sessions',
callback: () => {
Expand Down
128 changes: 0 additions & 128 deletions src/lib/layout/activity.svelte

This file was deleted.

1 change: 0 additions & 1 deletion src/lib/layout/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ export { default as Breadcrumbs } from './breadcrumbs.svelte';
export { default as Unauthenticated } from './unauthenticated.svelte';
export { default as Usage, type UsagePeriods } from './usage.svelte';
export { default as UsageMultiple } from './usageMultiple.svelte';
export { default as Activity } from './activity.svelte';
export { default as Progress } from './progress.svelte';
export { default as GridHeader } from './gridHeader.svelte';
export { default as ContainerHeader } from './containerHeader.svelte';
Expand Down
8 changes: 0 additions & 8 deletions src/routes/(console)/account/activity/+page.svelte

This file was deleted.

19 changes: 0 additions & 19 deletions src/routes/(console)/account/activity/+page.ts

This file was deleted.

6 changes: 0 additions & 6 deletions src/routes/(console)/account/header.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -27,12 +27,6 @@
title: 'Applications',
event: 'applications'
},
{
href: `${path}/activity`,
title: 'Activity',
event: 'activity',
hasChildren: true
},
{
href: `${path}/organizations`,
title: 'Organizations',
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -18,12 +18,6 @@
title: 'Members',
event: 'members',
hasChildren: true
},
{
href: `${path}/activity`,
title: 'Activity',
event: 'activity',
hasChildren: true
}
];
</script>
Expand Down

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -32,12 +32,6 @@
href: `${path}/sessions`,
title: 'Sessions',
event: 'sessions'
},
{
href: `${path}/activity`,
title: 'Activity',
event: 'activity',
hasChildren: true
}
];
</script>
Expand Down

This file was deleted.

Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
export { default as RecordActivity } from './activity.svelte';
export { default as CsvDisabled } from './csvDisabled.svelte';
export { default as EditRecordPermissions } from './editPermissions.svelte';
Loading