forked from grafana.jool/grafana-jool
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
21 lines
574 B
21 lines
574 B
<?php
|
|
$config = array(
|
|
'admin' => array(
|
|
'core:AdminPassword',
|
|
),
|
|
'example-userpass' => array(
|
|
'exampleauth:UserPass',
|
|
'saml-admin:grafana' => array(
|
|
'groups' => array('admins'),
|
|
'email' => 'saml-admin@grafana.com',
|
|
),
|
|
'saml-editor:grafana' => array(
|
|
'groups' => array('editors'),
|
|
'email' => 'saml-editor@grafana.com',
|
|
),
|
|
'saml-viewer:grafana' => array(
|
|
'groups' => array(),
|
|
'email' => 'saml-viewer@grafana.com',
|
|
),
|
|
),
|
|
);
|
|
|