api_permission.rb 140 B

123456789
  1. # frozen_string_literal: true
  2. module ShopifyAPI
  3. class ApiPermission < Base
  4. def self.destroy
  5. delete(:current)
  6. end
  7. end
  8. end