mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-22 04:11:15 +00:00
Changing to moderation tools.
This commit is contained in:
parent
1014851f8a
commit
f23c0a0e1b
2 changed files with 5 additions and 5 deletions
|
@ -67,7 +67,7 @@ export const API_LIBRARIES: ToolDetails[] = [
|
||||||
},
|
},
|
||||||
];
|
];
|
||||||
|
|
||||||
export const THIRD_PARTY_TOOLS: ToolDetails[] = [
|
export const MODERATION_TOOLS: ToolDetails[] = [
|
||||||
{
|
{
|
||||||
name: "lemmy-bot",
|
name: "lemmy-bot",
|
||||||
link: "https://github.com/SleeplessOne1917/lemmy-bot",
|
link: "https://github.com/SleeplessOne1917/lemmy-bot",
|
||||||
|
@ -81,7 +81,7 @@ export const THIRD_PARTY_TOOLS: ToolDetails[] = [
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: "Fediseer",
|
name: "Fediseer",
|
||||||
link: "https://github.com/Fediseer/fediseer",
|
link: "https://gui.fediseer.com",
|
||||||
description:
|
description:
|
||||||
"This service provides an REST API which can be used to retrieve various information about Fediverse instances, particularly focused on detecting and countering bad actors.",
|
"This service provides an REST API which can be used to retrieve various information about Fediverse instances, particularly focused on detecting and countering bad actors.",
|
||||||
},
|
},
|
||||||
|
|
|
@ -11,7 +11,7 @@ import {
|
||||||
AppLink,
|
AppLink,
|
||||||
Platform,
|
Platform,
|
||||||
SourceType,
|
SourceType,
|
||||||
THIRD_PARTY_TOOLS,
|
MODERATION_TOOLS,
|
||||||
} from "./app-definitions";
|
} from "./app-definitions";
|
||||||
import { Icon } from "./icon";
|
import { Icon } from "./icon";
|
||||||
import { I18nKeys } from "i18next";
|
import { I18nKeys } from "i18next";
|
||||||
|
@ -173,8 +173,8 @@ export class Apps extends Component<any, State> {
|
||||||
<div className="grid md:grid-cols-2 grid-cols-1 gap-4 mb-16">
|
<div className="grid md:grid-cols-2 grid-cols-1 gap-4 mb-16">
|
||||||
<ToolsBlock title={i18n.t("api_libraries")} items={API_LIBRARIES} />
|
<ToolsBlock title={i18n.t("api_libraries")} items={API_LIBRARIES} />
|
||||||
<ToolsBlock
|
<ToolsBlock
|
||||||
title={i18n.t("third_party_tools")}
|
title={i18n.t("moderation_tools")}
|
||||||
items={THIRD_PARTY_TOOLS}
|
items={MODERATION_TOOLS}
|
||||||
/>
|
/>
|
||||||
</div>
|
</div>
|
||||||
<BottomSpacer />
|
<BottomSpacer />
|
||||||
|
|
Loading…
Reference in a new issue