Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(223)

Side by Side Diff: Tools/GardeningServer/app.yaml

Issue 633983002: Implemented retrieval of alerts history (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: Refactored code and added tests Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1 application: sheriff-o-matic 1 application: sheriff-o-matic
2 version: 1 2 version: 1
3 runtime: python27 3 runtime: python27
4 api_version: 1 4 api_version: 1
5 threadsafe: true 5 threadsafe: true
6 6
7 handlers: 7 handlers:
8 - url: /alerts 8 - url: /alerts
9 script: alerts.app 9 script: alerts.app
10 secure: always 10 secure: always
11 11
12 - url: /alerts-history
13 script: alerts_history.app
14 secure: always
15
12 - url: /internal-alerts 16 - url: /internal-alerts
13 script: internal_alerts.app 17 script: internal_alerts.app
14 secure: always 18 secure: always
15 19
16 - url: /favicon.ico 20 - url: /favicon.ico
17 static_files: favicon.ico 21 static_files: favicon.ico
18 upload: favicon.ico 22 upload: favicon.ico
19 secure: always 23 secure: always
20 24
21 - url: /images 25 - url: /images
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
64 - ^(.*/)?.*/RCS/.*$ 68 - ^(.*/)?.*/RCS/.*$
65 - ^(.*/)?\..*$ 69 - ^(.*/)?\..*$
66 - ^(.*/)?.*\.md$ 70 - ^(.*/)?.*\.md$
67 - ^(.*/)?LICENSE$ 71 - ^(.*/)?LICENSE$
68 - ^(.*/)?README$ 72 - ^(.*/)?README$
69 - ^(.*/)?Makefile$ 73 - ^(.*/)?Makefile$
70 74
71 libraries: 75 libraries:
72 - name: webapp2 76 - name: webapp2
73 version: "latest" 77 version: "latest"
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698