class SlackItcAutoingestion::Configuration

Attributes

itc_password[RW]
itc_username[RW]
itc_vendor_id[RW]
slack_command[RW]
slack_token[RW]
slack_webhook_url[RW]

Public Class Methods

new() click to toggle source
# File lib/slack_itc_autoingestion/configuration.rb, line 11
def initialize
  @itc_username = ENV['ITUNES_CONNECT_USERNAME']
  @itc_password = ENV['ITUNES_CONNECT_PASSWORD']
  @itc_vendor_id = ENV['ITUNES_CONNECT_VENDOR_ID']
  @slack_token = ENV['SLACK_TOKEN']
  @slack_webhook_url = ENV['SLACK_WEBHOOK_URL']
  @slack_command = '/itc'
end