Rails 3 resource "without"

I want resources :users, but without action show. any way to do this on one line?

(something like resources :users, :without => :show)

+3
source share
1 answer

Use :except

resources :users, :except => :show
+9
source

Source: https://habr.com/ru/post/1794705/


All Articles