フォルダー /controllers/admin に一連のコントローラーがあり、これらはすべて次のように見え、同じfilter
です:
module Admin
class UsersController < ApplicationController
before_action :some_method
#actions
end
end
before_action :some_method
名前空間を持つ各コントローラーは、中央の場所からどのように継承できますか?