mirror of
https://code.sup39.dev/repos/Wqawg
synced 2024-12-28 11:04:53 +09:00
Change some top-level routes' breadcrumbs to be under HomeR
This commit is contained in:
parent
c27636a438
commit
6c186355f3
1 changed files with 3 additions and 3 deletions
|
@ -766,8 +766,8 @@ instance YesodBreadcrumbs App where
|
||||||
RobotsR -> ("", Nothing)
|
RobotsR -> ("", Nothing)
|
||||||
|
|
||||||
PublishR -> ("Publish", Just HomeR)
|
PublishR -> ("Publish", Just HomeR)
|
||||||
InboxR -> ("Inbox", Nothing)
|
InboxR -> ("Inbox", Just HomeR)
|
||||||
OutboxR -> ("Outbox", Nothing)
|
OutboxR -> ("Outbox", Just HomeR)
|
||||||
ActorKey1R -> ("Actor Key 1", Nothing)
|
ActorKey1R -> ("Actor Key 1", Nothing)
|
||||||
ActorKey2R -> ("Actor Key 2", Nothing)
|
ActorKey2R -> ("Actor Key 2", Nothing)
|
||||||
|
|
||||||
|
@ -775,7 +775,7 @@ instance YesodBreadcrumbs App where
|
||||||
ResendVerifyEmailR -> ( "Resend verification email"
|
ResendVerifyEmailR -> ( "Resend verification email"
|
||||||
, Nothing
|
, Nothing
|
||||||
)
|
)
|
||||||
AuthR _ -> ("Auth", Nothing)
|
AuthR _ -> ("Auth", Just HomeR)
|
||||||
|
|
||||||
SharersR -> ("Sharers", Just HomeR)
|
SharersR -> ("Sharers", Just HomeR)
|
||||||
SharerR shar -> (shr2text shar, Just SharersR)
|
SharerR shar -> (shr2text shar, Just SharersR)
|
||||||
|
|
Loading…
Reference in a new issue