Files
gitlabhq/app/models
Robert Speicher 8db2a59d0b Add StaticModel role, and add it to Commit model
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, ...)
2012-09-02 13:40:07 -04:00
..
2011-10-09 00:36:38 +03:00
2012-08-10 18:25:15 -04:00
2012-08-17 09:09:11 +03:00
2012-08-10 18:25:15 -04:00
2012-08-30 19:45:05 +03:00
2012-08-10 18:25:15 -04:00
2012-07-19 00:25:10 +03:00
2012-08-10 18:25:15 -04:00
2012-08-10 18:25:15 -04:00