Welcome to mirror list, hosted at ThFree Co, Russian Federation.

application_record.rb « models « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29696ab276f35093c1e822653f25b45e6b35911f (plain)
1
2
3
4
5
6
7
8
9
# frozen_string_literal: true

class ApplicationRecord < ActiveRecord::Base
  self.abstract_class = true

  def self.id_in(ids)
    where(id: ids)
  end
end