Changeset 244379 in webkit


Ignore:
Timestamp:
Apr 17, 2019 9:20:01 AM (5 years ago)
Author:
aakash_jain@apple.com
Message:

[ews-app] Clicking 'submit to new ews' doesn't reload status-bubble
https://bugs.webkit.org/show_bug.cgi?id=196675

Reviewed by Lucas Forschler.

  • BuildSlaveSupport/ews-app/ews/views/submittoews.py:

(SubmitToEWS): Added @xframe_options_exempt similar to statusbubble.py

Location:
trunk/Tools
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/Tools/BuildSlaveSupport/ews-app/ews/views/submittoews.py

    r242719 r244379  
    2929from django.shortcuts import redirect, render
    3030from django.views import View
     31from django.views.decorators.clickjacking import xframe_options_exempt
    3132
    3233from ews.fetcher import BugzillaPatchFetcher
     
    4041        return render(request, 'submittoews.html', {})
    4142
     43    @xframe_options_exempt
    4244    def post(self, request):
    4345        try:
  • trunk/Tools/ChangeLog

    r244370 r244379  
     12019-04-17  Aakash Jain  <aakash_jain@apple.com>
     2
     3        [ews-app] Clicking 'submit to new ews' doesn't reload status-bubble
     4        https://bugs.webkit.org/show_bug.cgi?id=196675
     5
     6        Reviewed by Lucas Forschler.
     7
     8        * BuildSlaveSupport/ews-app/ews/views/submittoews.py:
     9        (SubmitToEWS): Added @xframe_options_exempt similar to statusbubble.py
     10
    1112019-04-16  Wenson Hsieh  <wenson_hsieh@apple.com>
    212
Note: See TracChangeset for help on using the changeset viewer.