2019-12-18 23:54:23 +01:00
|
|
|
module.exports = [
|
2022-07-22 02:16:07 +02:00
|
|
|
{
|
2023-03-13 05:05:49 +01:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 02:16:07 +02:00
|
|
|
options: {
|
2023-03-13 05:05:49 +01:00
|
|
|
name: 'docs--5',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
2024-03-05 03:15:02 +01:00
|
|
|
branch: '5.2',
|
2023-03-13 05:05:49 +01:00
|
|
|
patterns: 'en/**'
|
2022-07-22 02:16:07 +02:00
|
|
|
}
|
|
|
|
},
|
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)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-05-27 23:51:14 +02:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--5--optional_features/taxonomies',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-taxonomy.git',
|
|
|
|
branch: '3.2',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
2022-07-22 02:16:07 +02:00
|
|
|
{
|
2023-03-13 05:05:49 +01:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 02:16:07 +02:00
|
|
|
options: {
|
2023-03-13 05:05:49 +01:00
|
|
|
name: 'docs--4',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
|
|
|
branch: '4.13',
|
|
|
|
patterns: 'en/**'
|
2022-07-22 02:16:07 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
2023-03-13 05:05:49 +01:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 02:16:07 +02:00
|
|
|
options: {
|
2023-03-13 05:05:49 +01:00
|
|
|
name: 'docs--3',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
|
|
|
branch: '3',
|
|
|
|
patterns: 'en/**'
|
2022-07-22 02:16:07 +02:00
|
|
|
}
|
|
|
|
},
|
2022-11-11 01:12:38 +01:00
|
|
|
];
|