Add missing responses import and replace usage of helper.responses with just response...
[Melange.git] / app / index.yaml
blobac9bd05c40d6e25f5150ff30fd3d4795d8db6c45
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 # AUTOGENERATED
41 # This index.yaml is automatically updated whenever the dev_appserver
42 # detects that a new type of query is run.  If you want to manage the
43 # index.yaml file manually, remove the above marker line (the line
44 # saying "# AUTOGENERATED").  If you want to manage some indexes
45 # manually, move them above the marker line.  The index.yaml file is
46 # automatically uploaded to the admin console when you next deploy
47 # your application using appcfg.py.