BigW Consortium Gitlab

  1. 04 Jan, 2013 1 commit
  2. 02 Jan, 2013 1 commit
  3. 13 Oct, 2012 1 commit
  4. 26 Sep, 2012 1 commit
  5. 02 Sep, 2012 1 commit
    • Add StaticModel role, and add it to Commit model · 8db2a59d
      Robert Speicher authored
      Instead of doing this:
      
          link_to(commit.id, project_commit_path(project, id: commit.id))
          Note.create(noteable_id: commit.id, noteable_type: "Commit", ...)
      
      It lets us do this:
      
          link_to(commit.id, project_commit_path(project, commit))
          Note.create(noteable: commit, ...)