mirror of
https://github.com/LemmyNet/joinlemmy-site.git
synced 2024-11-21 20:01:16 +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",
|
||||
link: "https://github.com/SleeplessOne1917/lemmy-bot",
|
||||
|
@ -81,7 +81,7 @@ export const THIRD_PARTY_TOOLS: ToolDetails[] = [
|
|||
},
|
||||
{
|
||||
name: "Fediseer",
|
||||
link: "https://github.com/Fediseer/fediseer",
|
||||
link: "https://gui.fediseer.com",
|
||||
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.",
|
||||
},
|
||||
|
|
|
@ -11,7 +11,7 @@ import {
|
|||
AppLink,
|
||||
Platform,
|
||||
SourceType,
|
||||
THIRD_PARTY_TOOLS,
|
||||
MODERATION_TOOLS,
|
||||
} from "./app-definitions";
|
||||
import { Icon } from "./icon";
|
||||
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">
|
||||
<ToolsBlock title={i18n.t("api_libraries")} items={API_LIBRARIES} />
|
||||
<ToolsBlock
|
||||
title={i18n.t("third_party_tools")}
|
||||
items={THIRD_PARTY_TOOLS}
|
||||
title={i18n.t("moderation_tools")}
|
||||
items={MODERATION_TOOLS}
|
||||
/>
|
||||
</div>
|
||||
<BottomSpacer />
|
||||
|
|
Loading…
Reference in a new issue