From c550191e6ab49a144e2dba28396405ee6749c3a9 Mon Sep 17 00:00:00 2001 From: Robert Prehn <3952444+prehnRA@users.noreply.github.com> Date: Fri, 9 Apr 2021 16:17:38 -0500 Subject: [PATCH] fix: Fix section names in Admin --- config/admin.exs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/config/admin.exs b/config/admin.exs index 22edf937..1dd8911c 100644 --- a/config/admin.exs +++ b/config/admin.exs @@ -12,13 +12,13 @@ config :kaffy, config :admin, Legendary.Admin, resources: [ auth: [ - name: "Legendary.Auth", + name: "Auth", resources: [ user: [schema: Legendary.Auth.User, admin: Legendary.Auth.UserAdmin], ] ], content: [ - name: "Legendary.Content", + name: "Content", resources: [ post: [schema: Legendary.Content.Post, admin: Legendary.Content.PostAdmin, label: "Posts and Pages", id_column: :name], comment: [schema: Legendary.Content.Comment, admin: Legendary.Content.CommentAdmin],