module InformantSinatra::Config

Public Class Methods

api_token() click to toggle source
# File lib/informant-sinatra/config.rb, line 3
def self.api_token
  InformantCommon::Config.api_token
end
api_token=(api_token) click to toggle source
# File lib/informant-sinatra/config.rb, line 7
def self.api_token=(api_token)
  InformantCommon::Config.api_token = api_token
end
enabled?() click to toggle source
# File lib/informant-sinatra/config.rb, line 11
def self.enabled?
  InformantCommon::Config.enabled?
end
exclude_models() click to toggle source
# File lib/informant-sinatra/config.rb, line 15
def self.exclude_models
  InformantCommon::Config.exclude_models
end
exclude_models=(exclude_models) click to toggle source
# File lib/informant-sinatra/config.rb, line 19
def self.exclude_models=(exclude_models)
  InformantCommon::Config.exclude_models = exclude_models
end
filter_parameters() click to toggle source
# File lib/informant-sinatra/config.rb, line 23
def self.filter_parameters
  InformantCommon::Config.filter_parameters
end
filter_parameters=(filter_parameters) click to toggle source
# File lib/informant-sinatra/config.rb, line 27
def self.filter_parameters=(filter_parameters)
  InformantCommon::Config.filter_parameters = filter_parameters
end
value_tracking=(value_tracking) click to toggle source
# File lib/informant-sinatra/config.rb, line 35
def self.value_tracking=(value_tracking)
  InformantCommon::Config.value_tracking = value_tracking
end
value_tracking?() click to toggle source
# File lib/informant-sinatra/config.rb, line 31
def self.value_tracking?
  InformantCommon::Config.value_tracking?
end