Changesets can be listed by changeset number.
The Git repository is here.
- Revision:
- 24
- Log:
Initial import of Collaboa 0.5.6 from downloaded Tarball. Collaboa is
a Ruby On Rails based bug tracker and SVN repository browsing tool.
- Author:
- adh
- Date:
- Mon Jul 24 21:54:39 +0100 2006
- Size:
- 316 Bytes
1 | class MilestonesController < ApplicationController |
2 | model :milestone, :ticket |
3 | before_filter :login_required |
4 | |
5 | def index |
6 | @milestones = Milestone.find_all("completed = 0") |
7 | end |
8 | |
9 | def show |
10 | @milestone = Milestone.find(params[:id]) |
11 | end |
12 | |
13 | def authorize?(user) |
14 | user.view_milestones? |
15 | end |
16 | |
17 | end |