1
0
Fork 0
This repository has been archived on 2023-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
lpr-partynest/config/routes.rb

12 lines
464 B
Ruby
Raw Normal View History

2018-11-22 19:58:12 +00:00
# frozen_string_literal: true
2018-11-22 19:33:08 +00:00
Rails.application.routes.draw do
2018-11-23 18:57:09 +00:00
root to: 'home#show'
2018-11-23 18:21:52 +00:00
2018-11-28 20:30:11 +00:00
get '/events/2018/11/24/otkrytaja-vstrecha-storonnikov-libertarianskoj-partii.html' => 'home#event1'
2018-11-28 20:42:47 +00:00
get '/posts/2018/07/27/sformirovan-rukovodjashhij-komitet-ro-lpr-v-permskom-krae.html' => 'home#post1'
2018-11-28 20:38:05 +00:00
get '/posts/2018/11/12/sekretar-ro-lpr-v-permskom-krae-byl-zaderzhan-na-4-chasa.html' => 'home#post2'
2018-11-28 20:30:11 +00:00
2018-11-26 14:12:49 +00:00
resources :membership_applications, only: %i[new create]
2018-11-22 19:33:08 +00:00
end