Add rate limiting to Action Controller via the Kredis limiter type by dhh · Pull Request #50490 · rails/rails

Add rate limiting API using Redis and the Kredis limiter type. class SessionsController < ApplicationController rate_limit to: 10, within: 3.minutes, only: :create end class SignupsController...