_upgrade_warning.html.erb 1.3 KB

1234567891011121314151617181920212223242526
  1. <% if @twitter_agent || @basecamp_agent %>
  2. <div class="alert alert-danger" role="alert">
  3. <p>
  4. <b>Warning!</b> You need to update your Huginn configuration, so your agents continue to work with the new OAuth services.
  5. </p>
  6. <br/>
  7. <% if @twitter_agent %>
  8. <p>
  9. To complete the migration of your <b>Twitter</b> agents you need to update your .env file and add the following two lines:
  10. <pre>
  11. TWITTER_OAUTH_KEY=<%= @twitter_oauth_key %>
  12. TWITTER_OAUTH_SECRET=<%= @twitter_oauth_secret %>
  13. </pre>
  14. To authenticate new accounts with your twitter OAuth application you need to log in the to <a href="https://apps.twitter.com/" target="_blank">twitter application management page</a> and set the callback URL of your application to "http<%= ENV['FORCE_SSL'] == 'true' ? 's' : '' %>://<%= ENV['DOMAIN'] %>/auth/twitter/callback".
  15. </p>
  16. <% end %>
  17. <% if @basecamp_agent %>
  18. <p>
  19. Your <b>Basecamp</b> agents could not be migrated automatically. You need to manually register an application with 37signals and authenticate Huginn to use it.<br/>
  20. Have a look at the <%= link_to 'Wiki', 'https://github.com/cantino/huginn/wiki/Configuring-OAuth-applications', target: '_blank' %> if you need help.
  21. </p>
  22. <% end %>
  23. </div>
  24. <% end -%>