Sha256: 77d327e0a18cfe282b48d18534acfebc2bfeffa11aa14d98cfce44b0e4f5ee56
Contents?: true
Size: 1.01 KB
Versions: 14
Compression:
Stored size: 1.01 KB
Contents
# frozen_string_literal: true require 'asana_exception_notifier' ExceptionNotification.configure do |config| # Email notifier sends notifications to Asana by creating tasks . config.add_notifier :asana, asana_api_key: ENV['ASANA_API_KEY'], workspace: ENV['ASANA_WORKSPACE_ID'], assignee: 'me', assignee_status: 'today', # 'today' due_at: Time.now.iso8601, due_on: nil, hearted: false, hearts: [], projects: [], followers: [], memberships: [], tags: [], name: nil, notes: '', template_path: nil, unsafe_options: [] end
Version data entries
14 entries across 14 versions & 1 rubygems