pl-fe: Display outgoing follow requests
Signed-off-by: mkljczk <git@mkljczk.pl>
This commit is contained in:
@@ -117,6 +117,7 @@ import {
|
||||
Mutes,
|
||||
NewStatus,
|
||||
Notifications,
|
||||
OutgoingFollowRequests,
|
||||
PasswordReset,
|
||||
PinnedStatuses,
|
||||
PlFeConfig,
|
||||
@@ -252,6 +253,7 @@ const SwitchingColumnsArea: React.FC<ISwitchingColumnsArea> = React.memo(({ chil
|
||||
{features.chats && <WrappedRoute path='/chats/:chatId' layout={ChatsLayout} component={ChatIndex} content={children} />}
|
||||
|
||||
<WrappedRoute path='/follow_requests' layout={DefaultLayout} component={FollowRequests} content={children} />
|
||||
{features.outgoingFollowRequests && <WrappedRoute path='/outgoing_follow_requests' layout={DefaultLayout} component={OutgoingFollowRequests} content={children} />}
|
||||
<WrappedRoute path='/blocks' layout={DefaultLayout} component={Blocks} content={children} />
|
||||
{features.federating && <WrappedRoute path='/domain_blocks' layout={DefaultLayout} component={DomainBlocks} content={children} />}
|
||||
<WrappedRoute path='/mutes' layout={DefaultLayout} component={Mutes} content={children} />
|
||||
|
||||
@@ -70,6 +70,7 @@ export const ModerationLog = lazy(() => import('pl-fe/features/admin/moderation-
|
||||
export const Mutes = lazy(() => import('pl-fe/features/mutes'));
|
||||
export const NewStatus = lazy(() => import('pl-fe/features/new-status'));
|
||||
export const Notifications = lazy(() => import('pl-fe/features/notifications'));
|
||||
export const OutgoingFollowRequests = lazy(() => import('pl-fe/features/follow-requests/components/outgoing-follow-requests'));
|
||||
export const PasswordReset = lazy(() => import('pl-fe/features/auth-login/components/password-reset'));
|
||||
export const PinnedStatuses = lazy(() => import('pl-fe/features/pinned-statuses'));
|
||||
export const PlFeConfig = lazy(() => import('pl-fe/features/pl-fe-config'));
|
||||
|
||||
Reference in New Issue
Block a user