Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
project_browser
Manage
Activity
Members
Labels
Plan
Wiki
Custom issue tracker
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
project
project_browser
Merge requests
!784
Issue
#3512785
: Enable CI for D10
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
Issue
#3512785
: Enable CI for D10
issue/project_browser-3512785:3512785-enable-ci-d10
into
2.0.x
Overview
0
Commits
6
Pipelines
7
Changes
5
Merged
Tim Plunkett
requested to merge
issue/project_browser-3512785:3512785-enable-ci-d10
into
2.0.x
3 months ago
Overview
0
Commits
6
Pipelines
7
Changes
5
Expand
Closes
#3512785
0
0
Merge request reports
Compare
2.0.x
version 6
eac72566
3 months ago
version 5
92520221
3 months ago
version 4
d7d05f6a
3 months ago
version 3
d2edbab6
3 months ago
version 2
2da8fe7a
3 months ago
version 1
84001b92
3 months ago
2.0.x (base)
and
latest version
latest version
eac72566
6 commits,
3 months ago
version 6
eac72566
6 commits,
3 months ago
version 5
92520221
6 commits,
3 months ago
version 4
d7d05f6a
6 commits,
3 months ago
version 3
d2edbab6
4 commits,
3 months ago
version 2
2da8fe7a
3 commits,
3 months ago
version 1
84001b92
1 commit,
3 months ago
5 files
+
19
−
9
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
5
Search (e.g. *.vue) (Ctrl+P)
src/Plugin/DrupalDotOrgSourceBase.php
+
5
−
5
Options
@@ -34,35 +34,35 @@ abstract class DrupalDotOrgSourceBase extends ProjectBrowserSourceBase implement
*
* @const string
*/
public
const
string
DRUPAL_ORG_ENDPOINT
=
'https://www.drupal.org'
;
public
const
DRUPAL_ORG_ENDPOINT
=
'https://www.drupal.org'
;
/**
* Endpoint to query data from.
*
* @const string
*/
public
const
string
JSONAPI_ENDPOINT
=
self
::
DRUPAL_ORG_ENDPOINT
.
'/jsonapi'
;
public
const
JSONAPI_ENDPOINT
=
self
::
DRUPAL_ORG_ENDPOINT
.
'/jsonapi'
;
/**
* Endpoint to query modules.
*
* @const string
*/
protected
const
string
JSONAPI_MODULES_ENDPOINT
=
self
::
JSONAPI_ENDPOINT
.
'/index/project_modules'
;
protected
const
JSONAPI_MODULES_ENDPOINT
=
self
::
JSONAPI_ENDPOINT
.
'/index/project_modules'
;
/**
* Value of the revoked status in the security coverage field.
*
* @const string
*/
protected
const
string
REVOKED_STATUS
=
'revoked'
;
protected
const
REVOKED_STATUS
=
'revoked'
;
/**
* This is what Drupal.org understands as "Covered" modules.
*
* @var array
*/
private
const
array
COVERED_VALUES
=
[
'covered'
];
private
const
COVERED_VALUES
=
[
'covered'
];
public
function
__construct
(
array
$configuration
,
Loading