NullVoxPopuli/skinny_controllers

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

Summary

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

      def read?
        false
      end

      def read_all?
        false
      end
    end
  end
end