mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
Remove LDAP specific example from team sync (#51368)
Co-authored-by: Gabriel MABILLE <gamab@users.noreply.github.com> Co-authored-by: Gabriel MABILLE <gamab@users.noreply.github.com>
This commit is contained in:
@@ -37,7 +37,7 @@ interface State {
|
||||
const connector = connect(mapStateToProps, mapDispatchToProps);
|
||||
export type Props = OwnProps & ConnectedProps<typeof connector>;
|
||||
|
||||
const headerTooltip = `Sync LDAP or OAuth groups with your Grafana teams.`;
|
||||
const headerTooltip = `Sync LDAP, OAuth or SAML groups with your Grafana teams.`;
|
||||
|
||||
export class TeamGroupSync extends PureComponent<Props, State> {
|
||||
constructor(props: Props) {
|
||||
@@ -130,17 +130,19 @@ export class TeamGroupSync extends PureComponent<Props, State> {
|
||||
<CloseButton onClick={this.onToggleAdding} />
|
||||
<form onSubmit={this.onAddGroup}>
|
||||
<InlineFieldRow>
|
||||
<InlineField label={'Add External Group'}>
|
||||
<InlineField
|
||||
label={'Add External Group'}
|
||||
tooltip="LDAP Group Example: cn=users,ou=groups,dc=grafana,dc=org."
|
||||
>
|
||||
<Input
|
||||
type="text"
|
||||
id={'add-external-group'}
|
||||
placeholder=""
|
||||
value={newGroupId}
|
||||
onChange={this.onNewGroupIdChanged}
|
||||
placeholder="cn=ops,ou=groups,dc=grafana,dc=org"
|
||||
disabled={isReadOnly}
|
||||
/>
|
||||
</InlineField>
|
||||
|
||||
<Button type="submit" disabled={isReadOnly || !this.isNewGroupValid()} style={{ marginLeft: 4 }}>
|
||||
Add group
|
||||
</Button>
|
||||
|
||||
Reference in New Issue
Block a user