2019-12-19 11:54:23 +13:00
|
|
|
module.exports = [
|
2024-09-05 14:58:50 +12:00
|
|
|
// CMS 6
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
|
|
|
branch: '6',
|
|
|
|
patterns: 'en/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/linkfield',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-linkfield.git',
|
|
|
|
branch: '5',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/userforms',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-userforms.git',
|
|
|
|
branch: '7',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/elemental',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-elemental.git',
|
|
|
|
branch: '6',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/mfa',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-mfa.git',
|
|
|
|
branch: '6',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-09-10 16:03:29 +12:00
|
|
|
{
|
|
|
|
resolve: `gatsby-source-git`,
|
|
|
|
options: {
|
|
|
|
name: `docs--6--optional_features/graphql`,
|
|
|
|
remote: `https://github.com/silverstripe/silverstripe-graphql.git`,
|
|
|
|
branch: `6`,
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-09-05 14:58:50 +12:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/mfa/authenticators/totp-authenticator',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-totp-authenticator.git',
|
|
|
|
branch: '6',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/mfa/authenticators/webauthn-authenticator',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-webauthn-authenticator.git',
|
|
|
|
branch: '6',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--6--optional_features/taxonomies',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-taxonomy.git',
|
|
|
|
branch: '4',
|
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
// CMS 5
|
2022-07-22 12:16:07 +12:00
|
|
|
{
|
2023-03-13 17:05:49 +13:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 12:16:07 +12:00
|
|
|
options: {
|
2023-03-13 17:05:49 +13:00
|
|
|
name: 'docs--5',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '5.3',
|
2023-03-13 17:05:49 +13:00
|
|
|
patterns: 'en/**'
|
2022-07-22 12:16:07 +12:00
|
|
|
}
|
|
|
|
},
|
2024-02-19 09:26:23 +13:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--5--optional_features/linkfield',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-linkfield.git',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '4.1',
|
2024-02-23 10:43:29 +13:00
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
2024-02-19 09:26:23 +13:00
|
|
|
}
|
|
|
|
},
|
2024-04-09 10:48:22 +12:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--5--optional_features/userforms',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-userforms.git',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '6.3',
|
2024-04-10 10:21:46 +12:00
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
2024-04-09 10:11:24 +12:00
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--5--optional_features/elemental',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-elemental.git',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '5.3',
|
2024-04-09 10:48:22 +12:00
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-04-09 16:56:19 +12:00
|
|
|
{
|
|
|
|
resolve: 'gatsby-source-git',
|
|
|
|
options: {
|
|
|
|
name: 'docs--5--optional_features/mfa',
|
|
|
|
remote: 'https://github.com/silverstripe/silverstripe-mfa.git',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '5.3',
|
2024-04-09 16:56:19 +12:00
|
|
|
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',
|
2024-09-10 10:09:34 +12:00
|
|
|
branch: '5.3',
|
2024-04-09 16:56:19 +12:00
|
|
|
patterns: 'docs/en/!(userguide)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-05-28 09:51:14 +12: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)/**'
|
|
|
|
}
|
|
|
|
},
|
2024-09-05 14:58:50 +12:00
|
|
|
|
|
|
|
// CMS 4
|
2022-07-22 12:16:07 +12:00
|
|
|
{
|
2023-03-13 17:05:49 +13:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 12:16:07 +12:00
|
|
|
options: {
|
2023-03-13 17:05:49 +13:00
|
|
|
name: 'docs--4',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
|
|
|
branch: '4.13',
|
|
|
|
patterns: 'en/**'
|
2022-07-22 12:16:07 +12:00
|
|
|
}
|
|
|
|
},
|
2024-09-05 14:58:50 +12:00
|
|
|
|
|
|
|
// CMS 3
|
2022-07-22 12:16:07 +12:00
|
|
|
{
|
2023-03-13 17:05:49 +13:00
|
|
|
resolve: 'gatsby-source-git',
|
2022-07-22 12:16:07 +12:00
|
|
|
options: {
|
2023-03-13 17:05:49 +13:00
|
|
|
name: 'docs--3',
|
|
|
|
remote: 'https://github.com/silverstripe/developer-docs.git',
|
|
|
|
branch: '3',
|
|
|
|
patterns: 'en/**'
|
2022-07-22 12:16:07 +12:00
|
|
|
}
|
|
|
|
},
|
2022-11-11 13:12:38 +13:00
|
|
|
];
|