I have a class similar to this:
class UsersController < ApplicationController
before_action :user_authentication, except: :create
include Crud
end
Rubocop Rails complains, “create is not explicitly defined on the class.”
Create action is defined in my included module.
What shall I do?