BAN の実装 (#327) (#342)

#327

#327

#327

#327

Merge remote-tracking branch 'origin/main' into feature/327

#327

Co-authored-by: miteruzo <miteruzo@naver.com>
Reviewed-on: #342
このコミットはPull リクエスト #342 でマージされました.
このコミットが含まれているのは:
2026-05-04 16:22:13 +09:00
コミット b47cdc7ad7
10個のファイルの変更286行の追加76行の削除
+10
ファイルの表示
@@ -0,0 +1,10 @@
FactoryBot.define do
factory :ip_address do
ip_address { IPAddr.new('203.0.113.10').hton }
banned_at { nil }
trait :banned do
banned_at { Time.current }
end
end
end