Class: Blogit::CommentsController
- Inherits:
-
ApplicationController
- Object
- ApplicationController
- ApplicationController
- Blogit::CommentsController
- Defined in:
- app/controllers/blogit/comments_controller.rb
Overview
Handles requests for creating Blogit::Comments
Instance Attribute Summary (collapse)
-
- (Object) comment
readonly
Accessor method for the comment being created.
-
- (Object) post
readonly
Accessor method for the Post we're adding a Comment to.
Instance Method Summary (collapse)
-
- (Object) create { ... }
Handles POST requests to /blogit/comments.html and /blogit/comments.js.
Methods inherited from ApplicationController
Instance Attribute Details
- (Object) comment (readonly)
Accessor method for the comment being created
9 10 11 |
# File 'app/controllers/blogit/comments_controller.rb', line 9 def comment @comment end |
- (Object) post (readonly)
Accessor method for the Post we're adding a Comment to
14 15 16 |
# File 'app/controllers/blogit/comments_controller.rb', line 14 def post @post end |
Instance Method Details
- (Object) create { ... }
Handles POST requests to /blogit/comments.html and /blogit/comments.js
19 20 21 22 23 24 25 26 27 28 |
# File 'app/controllers/blogit/comments_controller.rb', line 19 def create set_post_from_post_id set_comment_as_new comment.save yield comment if block_given? respond_to do |format| format.js { create_respond_to_js } format.html { create_respond_to_html } end end |