comments: allow new users to comment.

Remove the rule that users less than a week old can't leave comments.
This commit is contained in:
evazion
2020-03-21 22:23:29 -05:00
parent aefbed57b8
commit 63f7311489
9 changed files with 4 additions and 50 deletions

View File

@@ -5,7 +5,6 @@ class CommentVotesControllerTest < ActionDispatch::IntegrationTest
setup do
CurrentUser.user = @user = create(:user)
CurrentUser.ip_addr = "127.0.0.1"
Danbooru.config.stubs(:member_comment_time_threshold).returns(1.week.from_now)
@comment = create(:comment)
end