You can decide which pages you want to generate after using scaffold using the following methods in the routes file:
resources :follow_requests, except: [:index, :show, :new, :edit]
generates all pages except index, show, new, and edit.
resources :likes, only: [:create, :destroy]
Top comments (0)