1 2 3 |
@thread = @forum.threads.new(a)
@post = @thread.forum_posts.build(b)
@post_saved = @post.valid? and @thread.valid? and @thread.save
|
1 2 3 |
@thread = @forum.threads.new(a)
@post = @thread.forum_posts.build(b)
@post_saved = @post.valid? and @thread.valid? and @thread.save
|