mirror of
https://github.com/oauth2-proxy/oauth2-proxy.git
synced 2025-05-19 22:23:30 +02:00
* Microsoft Entra ID Provider * fix typo in function name * documentation tweaks * documentation and comment tweak * docs tweaks * final tweaks * refactor: drop flag for skipping graph groups * update legacy / deprecated provider page and sort provider overview * reformat * move entra-id provider into switch (treat like every other provider * fix test case and reformat * fix sidebar configuration * apply review suggestions * add pagination for graph api * fix: do not error when groups unable to retrieve * doc: number of groups fix * restore master packages * docs: tiny docs tweak * address review comments * fix codegen --------- Co-authored-by: tuunit <jan@larwig.com>
81 lines
2.0 KiB
JavaScript
81 lines
2.0 KiB
JavaScript
const sidebars = {
|
|
docs: [
|
|
{
|
|
type: 'doc',
|
|
id: 'welcome',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'installation',
|
|
},
|
|
{
|
|
type: 'doc',
|
|
id: 'behaviour',
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Configuration',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'configuration/overview',
|
|
},
|
|
collapsed: false,
|
|
items: [
|
|
'configuration/overview',
|
|
'configuration/integration',
|
|
{
|
|
type: 'category',
|
|
label: 'OAuth Provider Configuration',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'configuration/providers/index',
|
|
},
|
|
items: [
|
|
"configuration/providers/adfs",
|
|
"configuration/providers/azure",
|
|
"configuration/providers/bitbucket",
|
|
"configuration/providers/digitalocean",
|
|
"configuration/providers/facebook",
|
|
"configuration/providers/gitea",
|
|
"configuration/providers/github",
|
|
"configuration/providers/gitlab",
|
|
"configuration/providers/google",
|
|
"configuration/providers/keycloak",
|
|
"configuration/providers/keycloak_oidc",
|
|
"configuration/providers/linkedin",
|
|
"configuration/providers/login_gov",
|
|
"configuration/providers/ms_entra_id",
|
|
"configuration/providers/nextcloud",
|
|
"configuration/providers/openid_connect",
|
|
],
|
|
},
|
|
'configuration/session_storage',
|
|
'configuration/tls',
|
|
'configuration/alpha-config',
|
|
],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Features',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'features/endpoints',
|
|
},
|
|
collapsed: false,
|
|
items: ['features/endpoints'],
|
|
},
|
|
{
|
|
type: 'category',
|
|
label: 'Community',
|
|
link: {
|
|
type: 'doc',
|
|
id: 'community/security',
|
|
},
|
|
collapsed: false,
|
|
items: ['community/contribution', 'community/security'],
|
|
},
|
|
],
|
|
};
|
|
|
|
export default sidebars;
|