Skip to content
Snippets Groups Projects
Verified Commit 6d097f18 authored by quietone's avatar quietone
Browse files

Issue #3508449 by cilefen, ultimike, nicxvan, mstrelan: Add link to Status...

Issue #3508449 by cilefen, ultimike, nicxvan, mstrelan: Add link to Status Report from database updates completion page
parent e7bb6157
Branches
Tags
5 merge requests!5423Draft: Resolve #3329907 "Test2",!3478Issue #3337882: Deleted menus are not removed from content type config,!2964Issue #2865710 : Dependencies from only one instance of a widget are used in display modes,!579Issue #2230909: Simple decimals fail to pass validation,!213Issue #2906496: Give Media a menu item under Content
Pipeline #445334 passed with warnings
Pipeline: drupal

#445354

    Pipeline: drupal

    #445352

      Pipeline: drupal

      #445350

        +4
        ......@@ -710,6 +710,12 @@ protected function helpfulLinks(Request $request) {
        'url' => Url::fromRoute('system.admin')->setOption('base_url', $base_url),
        ];
        }
        if ($this->account->hasPermission('administer site configuration')) {
        $links['status-report'] = [
        'title' => $this->t('Status report'),
        'url' => Url::fromRoute('system.status')->setOption('base_url', $base_url),
        ];
        }
        return $links;
        }
        ......
        ......@@ -811,8 +811,9 @@ public function testSuccessfulMultilingualUpdateFunctionality(): void {
        $this->assertSession()->pageTextContains('Updates were attempted.');
        $this->assertSession()->linkExists('logged');
        $this->assertSession()->linkExists('Administration pages');
        $this->assertSession()->linkExists('Status report');
        $this->assertSession()->elementNotExists('xpath', '//main//a[contains(@href, "update.php")]');
        $this->clickLink('Administration pages');
        $this->clickLink('Status report');
        $this->assertSession()->statusCodeEquals(200);
        }
        ......
        0% Loading or .
        You are about to add 0 people to the discussion. Proceed with caution.
        Please register or to comment