Andrei S
Andrei S

Reputation: 6516

rails 3 resources "without"

i want resources :users but without the show action. any way to do it in one line?

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

Upvotes: 3

Views: 677

Answers (1)

Dogbert
Dogbert

Reputation: 222198

Use :except

resources :users, :except => :show

Upvotes: 9

Related Questions