Set the content type to text/csv for csv exports
[Melange.git] / app / index.yaml
blobe812bf6bff4a72d0bfce9fa751121d5b044bcb12
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 determine which proposals have a mentor assigned
26 - kind: StudentProposal
27   properties:
28   - name: org
29   - name: status
30   - name: mentor
32 # AUTOGENERATED
34 # This index.yaml is automatically updated whenever the dev_appserver
35 # detects that a new type of query is run.  If you want to manage the
36 # index.yaml file manually, remove the above marker line (the line
37 # saying "# AUTOGENERATED").  If you want to manage some indexes
38 # manually, move them above the marker line.  The index.yaml file is
39 # automatically uploaded to the admin console when you next deploy
40 # your application using appcfg.py.