8 lines
200 B
Ruby
8 lines
200 B
Ruby
|
Rails.application.routes.draw do
|
||
|
get 'wechat', to: 'wechat#show'
|
||
|
post 'wechat', to: 'wechat#create'
|
||
|
|
||
|
get 'wechat_corp', to: 'wechat_corp#show'
|
||
|
post 'wechat_corp', to: 'wechat_corp#create'
|
||
|
end
|