# USERS
match '/signup', to: 'users#new', via: 'get'
match '/users/:id', to: 'users#show', via: 'get'
match '/users', to: 'users#create', via: 'post'
match '/users/:id/edit', to: 'users#edit', via: 'get'
match '/users/:id', to: 'users#update', via: 'patch'
match '/users/:id', to: 'users#destroy', via: 'delete'