doc.silverstripe.org/sources-docs.js

84 lines
2.2 KiB
JavaScript
Raw Permalink Normal View History

module.exports = [
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5',
remote: 'https://github.com/silverstripe/developer-docs.git',
2024-03-05 03:15:02 +01:00
branch: '5.2',
patterns: 'en/**'
}
},
2024-02-18 21:26:23 +01:00
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/linkfield',
remote: 'https://github.com/silverstripe/silverstripe-linkfield.git',
branch: '4.0',
2024-02-22 22:43:29 +01:00
patterns: 'docs/en/!(userguide)/**'
2024-02-18 21:26:23 +01:00
}
},
2024-04-09 00:48:22 +02:00
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/userforms',
remote: 'https://github.com/silverstripe/silverstripe-userforms.git',
branch: '6.2',
2024-04-10 00:21:46 +02:00
patterns: 'docs/en/!(userguide)/**'
2024-04-09 00:11:24 +02:00
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/elemental',
remote: 'https://github.com/silverstripe/silverstripe-elemental.git',
branch: '5.2',
2024-04-09 00:48:22 +02:00
patterns: 'docs/en/!(userguide)/**'
}
},
2024-04-09 06:56:19 +02:00
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa',
remote: 'https://github.com/silverstripe/silverstripe-mfa.git',
branch: '5.2',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa/authenticators/totp-authenticator',
remote: 'https://github.com/silverstripe/silverstripe-totp-authenticator.git',
branch: '5.2',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--5--optional_features/mfa/authenticators/webauthn-authenticator',
remote: 'https://github.com/silverstripe/silverstripe-webauthn-authenticator.git',
branch: '5.2',
patterns: 'docs/en/!(userguide)/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--4',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '4.13',
patterns: 'en/**'
}
},
{
resolve: 'gatsby-source-git',
options: {
name: 'docs--3',
remote: 'https://github.com/silverstripe/developer-docs.git',
branch: '3',
patterns: 'en/**'
}
},
2022-11-11 01:12:38 +01:00
];