mirror of
https://github.com/cryptpad/cryptpad.git
synced 2026-09-13 18:45:43 +05:00
22 lines
516 B
JavaScript
22 lines
516 B
JavaScript
module.exports = {
|
|
// Enable SSO login on this instance
|
|
enabled: false,
|
|
// Block registration for non-SSO users on this instance
|
|
enforced: false,
|
|
// Allow users to add an additional CryptPad password to their SSO account
|
|
cpPassword: false,
|
|
// List of SSO providers
|
|
list: [
|
|
/*
|
|
{
|
|
name: 'google',
|
|
type: 'oidc',
|
|
url: 'https://accounts.google.com',
|
|
client_id: "{your_client_id}",
|
|
client_secret: "{your_client_secret}"
|
|
}
|
|
*/
|
|
]
|
|
};
|
|
|