LoginSignup
0
0

More than 3 years have passed since last update.

RedmineではProject.find(<identifier>)でプロジェクトを取得できる

Last updated at Posted at 2020-10-11

redmineのプラグインチュートリアル でも多様されている表現ですが、個人的にはfind()はidのみに使った方が良いと思います。

なぜできるか?

Redmineのコードで以下のようにオーバーライドしているから。

app/models/project.rb

  def self.find(*args)
    if args.first && args.first.is_a?(String) && !args.first.match(/^\d*$/)
      project = find_by_identifier(*args)
      raise ActiveRecord::RecordNotFound, "Couldn't find Project with identifier=#{args.first}" if project.nil?
      project
    else
      super
    end
  end
0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0