Changeset 247884 in webkit


Ignore:
Timestamp:
Jul 26, 2019 4:58:59 PM (5 years ago)
Author:
Jonathan Bedard
Message:

Follow-up fix: results.webkit.org: Suite results shouldn't be the landing page
https://bugs.webkit.org/show_bug.cgi?id=200090

Unreviewed follow-up fix.

  • resultsdbpy/resultsdbpy/view/view_routes.py:

(ViewRoutes.init): Keep /search endpoint for existing links

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/ChangeLog

    r247877 r247884  
     12019-07-26  Jonathan Bedard  <jbedard@apple.com>
     2
     3        Follow-up fix: results.webkit.org: Suite results shouldn't be the landing page
     4        https://bugs.webkit.org/show_bug.cgi?id=200090
     5
     6        Unreviewed follow-up fix.
     7
     8        * resultsdbpy/resultsdbpy/view/view_routes.py:
     9        (ViewRoutes.__init__): Keep /search endpoint for existing links
     10
    1112019-07-26  Jonathan Bedard  <jbedard@apple.com>
    212
  • trunk/Tools/resultsdbpy/resultsdbpy/view/view_routes.py

    r247869 r247884  
    7171
    7272        self.add_url_rule('/', 'main', self.suites.search, methods=('GET',))
     73        self.add_url_rule('/search', 'search', self.suites.search, methods=('GET',))
    7374
    7475        self.add_url_rule('/documentation', 'documentation', self.documentation, methods=('GET',))
Note: See TracChangeset for help on using the changeset viewer.