repo.or.cz
/
akelos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Fixing content type ordering when content_type is not defined.
[akelos.git]
/
test
/
fixtures
/
app
/
models
/
todo_task.php
blob
c76e8c3ecd29d4b68c6f932c2ce159d532d7013c
1
<
?php
2
3
class
TodoTask
extends
ActiveRecord
4
{
5
var
$acts_as
=
array
(
'list'
=>
array
(
'scope'
=>
array
(
'todo_list_id'
,
'is_done =
\'
0
\'
'
)));
6
var
$belongs_to
=
array
(
'todo_list'
);
7
}
8
9
?
>