Add missing __init__.py file in taggable-mixin module.
[Melange.git] / app / index.yaml
blob35664dcf644e031e49d4d1e4deab32e68ee0d7d4
1 indexes:
3 # used to list proposal in descending order of their score
4 - kind: StudentProposal
5   properties:
6   - name: org
7   - name: status
8   - name: score
9     direction: desc
11 # used to list reviews in ascending order of date
12 - kind: Review
13   properties:
14   - name: is_public
15   - name: scope
16   - name: created
18 # used to determine which orgs have more then 0 slots assigned.
19 - kind: Organization
20   properties:
21   - name: scope
22   - name: status
23   - name: slots
25 # used to order accepted orgs
26 - kind: Organization
27   properties:
28   - name: scope
29   - name: status
30   - name: name
32 # used to determine which proposals have a mentor assigned
33 - kind: StudentProposal
34   properties:
35   - name: org
36   - name: status
37   - name: mentor
39 # used to determine which proposals will be accepted
40 - kind: StudentProposal
41   properties:
42   - name: org
43   - name: status
44   - name: __key__
46 # used for the bulk mailing of students
47 - kind: Student
48   properties:
49   - name: scope
50   - name: __key__
52 # used for the cron system
53 - kind: Job
54   properties:
55   - name: priority_group
56   - name: status
57   - name: __key__
59 # AUTOGENERATED
61 # This index.yaml is automatically updated whenever the dev_appserver
62 # detects that a new type of query is run.  If you want to manage the
63 # index.yaml file manually, remove the above marker line (the line
64 # saying "# AUTOGENERATED").  If you want to manage some indexes
65 # manually, move them above the marker line.  The index.yaml file is
66 # automatically uploaded to the admin console when you next deploy
67 # your application using appcfg.py.