Class: GraphStarter::ModelsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- GraphStarter::ModelsController
- Defined in:
- app/controllers/graph_starter/models_controller.rb
Instance Method Summary collapse
Instance Method Details
#index ⇒ Object
3 4 5 |
# File 'app/controllers/graph_starter/models_controller.rb', line 3 def index @models = Model.all end |
#show ⇒ Object
7 8 9 |
# File 'app/controllers/graph_starter/models_controller.rb', line 7 def show @model = Model.find_by(name: params[:name]) end |