Make inbox entries visible in Rails Admin again

This commit is contained in:
Andreas Nedbal 2024-03-10 19:12:46 +01:00 committed by Andreas Nedbal
parent 67015aa452
commit 9d7228d87a
1 changed files with 3 additions and 3 deletions

View File

@ -35,7 +35,7 @@ RailsAdmin.config do |config|
Comment Comment
List List
ListMember ListMember
Inbox InboxEntry
MuteRule MuteRule
Notification Notification
Profile Profile
@ -59,7 +59,7 @@ RailsAdmin.config do |config|
"Answer" => "exclamation", "Answer" => "exclamation",
"Reaction" => "smile", "Reaction" => "smile",
"Comment" => "comment", "Comment" => "comment",
"Inbox" => "inbox", "InboxEntry" => "inbox",
"List" => "list", "List" => "list",
"ListMember" => "users", "ListMember" => "users",
"MuteRule" => "volume-mute", "MuteRule" => "volume-mute",
@ -86,7 +86,7 @@ RailsAdmin.config do |config|
# set up custom parents for certain models to group them nicely together # set up custom parents for certain models to group them nicely together
{ {
"AnonymousBlock" => User, "AnonymousBlock" => User,
"Inbox" => User, "InboxEntry" => User,
"List" => User, "List" => User,
"MuteRule" => User, "MuteRule" => User,
"Notification" => User, "Notification" => User,