File tree Expand file tree Collapse file tree 3 files changed +13
-86
lines changed
app/[domain]/settings/(general) Expand file tree Collapse file tree 3 files changed +13
-86
lines changed Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -6,7 +6,6 @@ import { ChangeOrgDomainCard } from "./components/changeOrgDomainCard";
6
6
import { ServiceErrorException } from "@/lib/serviceError" ;
7
7
import { ErrorCode } from "@/lib/errorCodes" ;
8
8
import { headers } from "next/headers" ;
9
- import { EnterpriseFeaturesCard } from "./components/enterpriseFeaturesCard" ;
10
9
11
10
interface GeneralSettingsPageProps {
12
11
params : {
@@ -47,10 +46,6 @@ export default async function GeneralSettingsPage({ params: { domain } }: Genera
47
46
currentUserRole = { currentUserRole }
48
47
rootDomain = { host }
49
48
/>
50
-
51
- < EnterpriseFeaturesCard
52
- domain = { domain }
53
- />
54
49
</ div >
55
50
)
56
51
}
Original file line number Diff line number Diff line change @@ -3,9 +3,21 @@ import { NewsItem } from "./types";
3
3
// Sample news data - replace with your actual data source
4
4
export const newsData : NewsItem [ ] = [
5
5
{
6
- unique_id : "1 " ,
6
+ unique_id : "code-nav " ,
7
7
header : "Code navigation" ,
8
8
sub_header : "Built in go-to definition and find references" ,
9
9
url : "https://docs.sourcebot.dev" , // TODO: link to code nav docs
10
+ } ,
11
+ {
12
+ unique_id : "sso" ,
13
+ header : "SSO" ,
14
+ sub_header : "We've added support for SSO providers" ,
15
+ url : "https://docs.sourcebot.dev/self-hosting/configuration/authentication" ,
16
+ } ,
17
+ {
18
+ unique_id : "search-contexts" ,
19
+ header : "Search contexts" ,
20
+ sub_header : "Group repos into different search contexts to search against" ,
21
+ url : "https://docs.sourcebot.dev/docs/search/search-contexts"
10
22
}
11
23
] ;
You can’t perform that action at this time.
0 commit comments