Merge branch 'canary' into feat/requests

This commit is contained in:
Mauricio Siu
2024-09-05 00:17:40 -06:00
189 changed files with 22323 additions and 2667 deletions

View File

@@ -59,6 +59,12 @@ export const SettingsLayout = ({ children }: Props) => {
icon: KeyRound,
href: "/dashboard/settings/ssh-keys",
},
{
title: "Git ",
label: "",
icon: GitBranch,
href: "/dashboard/settings/git-providers",
},
{
title: "Users",
label: "",
@@ -95,6 +101,16 @@ export const SettingsLayout = ({ children }: Props) => {
},
]
: []),
...(user?.canAccessToGitProviders
? [
{
title: "Git",
label: "",
icon: GitBranch,
href: "/dashboard/settings/git-providers",
},
]
: []),
]}
/>
</div>
@@ -109,6 +125,7 @@ import {
Bell,
Database,
KeyIcon,
GitBranch,
KeyRound,
type LucideIcon,
Route,