master
# frozen_string_literal: true module Policy module Fare class Zone < Base authorize_by Strategy::Permission protected def _update? true end def _destroy? true end end end end