NullVoxPopuli/skinny_controllers

View on GitHub
lib/skinny_controllers/policy/allow_all.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true
module SkinnyControllers
  module Policy
    class AllowAll < Base
      def default?
        true
      end

      def read?
        true
      end

      def read_all?
        true
      end
    end
  end
end