mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-16 22:35:34 +00:00
22 lines
657 B
TypeScript
22 lines
657 B
TypeScript
|
|
import { NewsItem } from "./types";
|
||
|
|
|
||
|
|
export const newsData: NewsItem[] = [
|
||
|
|
{
|
||
|
|
unique_id: "code-nav",
|
||
|
|
header: "Code navigation",
|
||
|
|
sub_header: "Built in go-to definition and find references",
|
||
|
|
url: "https://docs.sourcebot.dev/docs/search/code-navigation"
|
||
|
|
},
|
||
|
|
{
|
||
|
|
unique_id: "sso",
|
||
|
|
header: "SSO",
|
||
|
|
sub_header: "We've added support for SSO providers",
|
||
|
|
url: "https://docs.sourcebot.dev/self-hosting/configuration/authentication",
|
||
|
|
},
|
||
|
|
{
|
||
|
|
unique_id: "search-contexts",
|
||
|
|
header: "Search contexts",
|
||
|
|
sub_header: "Filter searches by groups of repos",
|
||
|
|
url: "https://docs.sourcebot.dev/docs/search/search-contexts"
|
||
|
|
}
|
||
|
|
];
|