module MokiRuby

Constants

VERSION

Public Class Methods

ios_profiles() click to toggle source
# File lib/moki_ruby.rb, line 5
def self.ios_profiles
  data = MokiAPI.ios_profiles.value
  data.body.map { |profile| TenantIOSProfile.from_hash(profile) }
end
tenant_managed_apps() click to toggle source
# File lib/moki_ruby.rb, line 10
def self.tenant_managed_apps
  data = MokiAPI.tenant_managed_app_list.value
  data.body.map { |profile| TenantManagedApp.from_hash(profile) }
end