lib/generators/templates/pointless_feedback.rb in pointless_feedback-4.1.0 vs lib/generators/templates/pointless_feedback.rb in pointless_feedback-4.1.1
- old
+ new
@@ -1,9 +1,9 @@
PointlessFeedback.setup do |config|
# ==> Feedback Configuration
# Configure the topics for the user to choose from on the feedback form
- # config.message_topics = ['Error on page', 'Other']
+ # config.message_topics = ['Error on page', 'Feature Request', 'Praise', 'Other']
# ==> Email Configuration
# Configure feedback email properties (disabled by default)
# Variables needed for emailing feedback
# config.email_feedback = false
@@ -17,6 +17,21 @@
# 2. !! Ensure you opt for reCAPTCHA v2. Support for v3 is not here yet.
# 3. Grab the site and secret key and paste them here.
#
# config.google_captcha_site_key = nil
# config.google_captcha_secret_key = nil
+
+ # ==> Airtable Configuration
+ # If you'd like to export feedback submissions to an Airtable database,
+ # 1. Create an Airtable database with the following columns:
+ # - Name
+ # - Email
+ # - Topic
+ # - Description
+ # 2. Generate an API Key: https://airtable.com/account
+ # 3. Find your app key and table name: https://airtable.com/api
+ # 4. Fill in all these configs
+ #
+ # config.airtable_api_key = "key--------------"
+ # config.airtable_app_key = "app--------------"
+ # config.airtable_table_name = "Feedback Tracker"
end