mirror of
https://github.com/cyberarm/w3d_hub_linux_launcher.git
synced 2025-12-16 17:22:35 +00:00
18 lines
329 B
Ruby
18 lines
329 B
Ruby
class W3DHub
|
|
class Api
|
|
class ServiceStatus
|
|
def initialize(response)
|
|
@data = JSON.parse(response, symbolize_names: true)
|
|
end
|
|
|
|
def authentication?
|
|
@data[:services][:authentication]
|
|
end
|
|
|
|
def package_download?
|
|
@data[:services][:packageDownload]
|
|
end
|
|
end
|
|
end
|
|
end
|