Rails именованные запросы к Grails

У меня есть это в рельсах:

default_scope { order('created_at DESC') }
  scope :by_source_name, ->(source_name) { where('source_name = ?', source_name) if source_name }
  scope :by_check_name,  ->(check_name)  { where('check_name = ?', check_name.upcase) if check_name }
  scope :by_status,      ->(status)      { where('status = ?', status.upcase) if status }
end

def index
    @alerts = Alert.by_source_name(params[:source_name])
                   .by_check_name(params[:check_name])
                   .by_status(params[:status])
    render json: @alerts, each_serializer: AlertSerializer
  end

Как перевести в грааль?