I want resources :users, but without action show. any way to do this on one line?
resources :users
show
(something like resources :users, :without => :show)
resources :users, :without => :show
Use :except
:except
resources :users, :except => :show
Source: https://habr.com/ru/post/1794705/More articles:Как найти имена со специальными символами типа "Хосе" на MS SQL-Server - sqlDuplicate entry created, but why? (linq to sql) - c #Hidden window screenshot - windowsadd image to html or radio input element - htmlDoes VBA have an ATan2 feature? - vbaScreenshot of a window using WinAPI - c ++The default attribute values for my custom view (inherited from LinearLayout) - androidLowercase complex lines with math - wolfram-mathematicaHow to make "select all" and "copy to clipboard" using Javascript for asp: label? - javascriptGet dll path loaded using LoadLibrary ("MyDll.dll") - winapiAll Articles