This commit is contained in:
Benjamin Myara
2018-08-31 15:06:42 +01:00
parent d0803e7e72
commit c67849c3dc
13 changed files with 80 additions and 2 deletions

View File

@@ -41,4 +41,7 @@ Rails.application.routes.draw do
get '/users/:id/edit', to: 'users#edit', as: :user_edit
patch '/users/:id', to: 'users#update'
delete '/users/:id', to: 'users#destroy'
resources :connections, only: [:create, :new]
#get '/add_contact', to: 'connections#create'
end