Skip to content

Commit

Permalink
change navigation target to administrators view
Browse files Browse the repository at this point in the history
  • Loading branch information
kbsat committed Oct 26, 2022
1 parent 1ee2f86 commit fbe18e8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/main/kotlin/apply/ui/admin/MenuLayout.kt
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package apply.ui.admin

import apply.application.RecruitmentService
import apply.ui.admin.administrator.AdministratorsView
import apply.ui.admin.cheater.CheatersView
import apply.ui.admin.evaluation.EvaluationsView
import apply.ui.admin.mail.MailsView
Expand Down Expand Up @@ -54,7 +55,7 @@ class MenuLayout(
createBorderItem(),
"메일 관리" of MailsView::class.java,
"부정행위자" of CheatersView::class.java,
"관리자" of MailsView::class.java
"관리자" of AdministratorsView::class.java
)
}

Expand Down

0 comments on commit fbe18e8

Please sign in to comment.