panda_pub_settings.mustache 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. <%
  2. # Copyright (C) 2014 - present Instructure, Inc.
  3. #
  4. # This file is part of Canvas.
  5. #
  6. # Canvas is free software: you can redistribute it and/or modify it under
  7. # the terms of the GNU Affero General Public License as published by the Free
  8. # Software Foundation, version 3 of the License.
  9. #
  10. # Canvas is distributed in the hope that it will be useful, but WITHOUT ANY
  11. # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
  12. # A PARTICULAR PURPOSE. See the GNU Affero General Public License for more
  13. # details.
  14. #
  15. # You should have received a copy of the GNU Affero General Public License along
  16. # with this program. If not, see <http://www.gnu.org/licenses/>.
  17. %>
  18. <%= fields_for :settings, OpenObject.new(settings) do |f| %>
  19. <table style="width: 500px;" class="formtable">
  20. <tr>
  21. <td colspan="2">
  22. <p><%= t(:description, <<-TEXT)
  23. PandaPub is a pub/sub service which, when configured, allows
  24. some parts of Canvas to receive notifications of events within
  25. the browser, rather than polling for changes.
  26. TEXT
  27. %></p>
  28. </td>
  29. </tr>
  30. <tr>
  31. <td><%= f.blabel :base_url, :en => "Base URL" %></td>
  32. <td>
  33. <%= f.text_field :base_url %>
  34. </td>
  35. </tr>
  36. <tr>
  37. <td><%= f.blabel :application_id, :en => "Application Id" %></td>
  38. <td>
  39. <%= f.text_field :application_id %>
  40. </td>
  41. </tr>
  42. <tr>
  43. <td><%= f.blabel :key_id, :en => "Key ID" %></td>
  44. <td>
  45. <%= f.text_field :key_id %>
  46. </td>
  47. </tr>
  48. <tr>
  49. <td><%= f.blabel :key_secret, :en => "Key Secret" %></td>
  50. <td>
  51. <%= f.password_field :key_secret %>
  52. </td>
  53. </tr>
  54. </table>
  55. <% end %>