这是我的主动管理模型push_notification.rb
ActiveAdmin.register PushNotification do
actions :all, only: [:index]
menu priority: 12
permit_params :name, :message, :enabled, :day_limit
index do
render partial: 'charts'
end
end
我在我的app / views / admin / push_notification / _charts.html.erb
中有这个<h1>Hello world!</h1>
但我无法到达这里。每当我在我的活动管理员页面中单击推送通知选项卡时,我都会收到路由错误..
No route matches [GET] "/admin/push_notification"
请帮忙。 提前谢谢。