app/index.yaml
author Lennard de Rijk <ljvderijk@gmail.com>
Tue, 24 Mar 2009 19:49:35 +0000
changeset 2004 4d9e41c947fd
parent 1957 972758a2682f
child 2223 7b8b812aa146
permissions -rw-r--r--
Added JS to the duplicate proposals page. TODO's: Caching Fix the recalculate to properly clear the previous iteration. Patch by: Mario Ferraro Reviewed by: Lennard de Rijk

indexes:

# used to list proposal in descending order of their score
- kind: StudentProposal
  properties:
  - name: org
  - name: status
  - name: score
    direction: desc

# used to list reviews in ascending order of date
- kind: Review
  properties:
  - name: is_public
  - name: scope
  - name: created

# used to determine which orgs have more then 0 slots assigned.
- kind: Organization
  properties:
  - name: scope
  - name: status
  - name: slots

# used to order accepted orgs
- kind: Organization
  properties:
  - name: scope
  - name: status
  - name: name

# used to determine which proposals have a mentor assigned
- kind: StudentProposal
  properties:
  - name: org
  - name: status
  - name: mentor

# AUTOGENERATED

# This index.yaml is automatically updated whenever the dev_appserver
# detects that a new type of query is run.  If you want to manage the
# index.yaml file manually, remove the above marker line (the line
# saying "# AUTOGENERATED").  If you want to manage some indexes
# manually, move them above the marker line.  The index.yaml file is
# automatically uploaded to the admin console when you next deploy
# your application using appcfg.py.