af83/chouette-core

View on GitHub
app/policies/policy/workbench/sharing.rb

Summary

Maintainability
A
0 mins
Test Coverage
# frozen_string_literal: true

module Policy
  class Workbench
    class Sharing < Base
      authorize_by Strategy::Permission

      protected

      def _destroy?
        true
      end
    end
  end
end