refactor: 🚚 Make paths under /entities use the singular form

This commit is contained in:
Jesse Wierzbinski 2024-08-13 16:29:47 +02:00
parent ff57ee4ffd
commit a106e7acef
No known key found for this signature in database
13 changed files with 32 additions and 32 deletions

View file

@ -271,13 +271,13 @@ export const navigation: NavGroup[] = [
{
title: "Entities",
links: [
{ title: "Delete", href: "/entities/deletes" },
{ title: "Follow", href: "/entities/follows" },
{ title: "FollowAccept", href: "/entities/follow-accepts" },
{ title: "FollowReject", href: "/entities/follow-rejects" },
{ title: "Notes", href: "/entities/notes" },
{ title: "Unfollow", href: "/entities/unfollows" },
{ title: "Users", href: "/entities/users" },
{ title: "Delete", href: "/entities/delete" },
{ title: "Follow", href: "/entities/follow" },
{ title: "FollowAccept", href: "/entities/follow-accept" },
{ title: "FollowReject", href: "/entities/follow-reject" },
{ title: "Notes", href: "/entities/note" },
{ title: "Unfollow", href: "/entities/unfollow" },
{ title: "Users", href: "/entities/user" },
],
},
{