routes.rb 537 B

1234567891011121314151617
  1. # frozen_string_literal: true
  2. ROUTES = [
  3. { path: '/' },
  4. { path: '/nosotros.html' },
  5. { path: '/sign', method: 'POST' },
  6. { path: '/signup', method: 'POST' },
  7. { path: '/2022/01/propuestas-constitucionales.html' },
  8. { path: '/2022/02/presentacion-convencion-constitucional.html' },
  9. { path: '/2022/09/rescate-proceso-constituyente.html' },
  10. { path: '/2022/10/vulnerabilidades-informaticas-estado-chile.html' },
  11. {
  12. path: '/aaron-swartz-2022',
  13. action: -> { render_with_layout('2022/11/aaron-swartz.haml') }
  14. }
  15. ].freeze