Class: CommentsController
- Inherits:
-
InternalController
- Object
- InternalController
- CommentsController
- Defined in:
- lib/generators/comments/templates/controllers/comments_controller.rb
Instance Method Summary collapse
Instance Method Details
#create ⇒ Object
8 9 10 |
# File 'lib/generators/comments/templates/controllers/comments_controller.rb', line 8 def create comment.save ? head(:ok) : head(:unprocessable_entity) end |
#destroy ⇒ Object
12 13 14 |
# File 'lib/generators/comments/templates/controllers/comments_controller.rb', line 12 def destroy comment.destroy ? head(:ok) : head(:unprocessable_entity) end |
#index ⇒ Object
4 5 6 |
# File 'lib/generators/comments/templates/controllers/comments_controller.rb', line 4 def index Comment.all end |