Sha256: 422f3c07d790c62d9a3081d8b0ee36cb9825f70e672901335df10aa2e5c732ff
Contents?: true
Size: 898 Bytes
Versions: 3
Compression:
Stored size: 898 Bytes
Contents
# encoding: utf-8 module Doggy module Models class Dashboard < Doggy::Model self.root = 'dash' attribute :id, Integer attribute :title, String attribute :description, String attribute :graphs, Array[Hash] attribute :template_variables, Array[Hash] def self.resource_url(id = nil) "https://app.datadoghq.com/api/v1/dash".tap do |base_url| base_url << "/#{ id }" if id end end def managed? !(title =~ Doggy::DOG_SKIP_REGEX) end def ensure_managed_emoji! return unless managed? self.title += " \xF0\x9F\x90\xB6" end def human_url "https://app.datadoghq.com/dash/#{ id }" end # Dashboards don't have a direct edit URL alias_method :human_edit_url, :human_url end # Dashboard end # Models end # Doggy
Version data entries
3 entries across 3 versions & 1 rubygems
Version | Path |
---|---|
doggy-2.0.3 | lib/doggy/models/dashboard.rb |
doggy-2.0.2 | lib/doggy/models/dashboard.rb |
doggy-2.0.1 | lib/doggy/models/dashboard.rb |