Skip to content

Commit

Permalink
Added outline of issue tracker module
Browse files Browse the repository at this point in the history
  • Loading branch information
Woody Gilk authored and zeelot committed Nov 10, 2009
1 parent c69cbef commit b0ebfbb
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions modules/kocode/issues/init.php
@@ -0,0 +1,13 @@
<?php defined('SYSPATH') or die('No direct script access.');

Route::set('issue', 'issues(/<id>)')
->defaults(array(
'controller' => 'issues',
'action' => 'detail',
));

Route::set('project/issues', 'projects/<name>/issues')
->defaults(array(
'controller' => 'issues',
));

0 comments on commit b0ebfbb

Please sign in to comment.