我的应用程序存在 Rails 4 问题
concern :common do
resources :comments
resources :categories
resources :tags
end
resources :articles, concerns: :common
resources :messages, concerns: :common
我面临的问题是我想通过关注点为资源消息添加特定的控制器操作(例如创建、编辑)。我不知道如何传递关注的行动。请帮我解决这个问题