enabled team creation for sysadmins (#3433)
Этот коммит содержится в:
коммит произвёл
Joram Wilander
родитель
65e18ad1f5
Коммит
1c8962cf99
@@ -86,7 +86,7 @@ export default class UsersAndTeamsSettings extends AdminSettings {
|
||||
helpText={
|
||||
<FormattedMessage
|
||||
id='admin.team.teamCreationDescription'
|
||||
defaultMessage='When false, the ability to create teams is disabled. The create team button displays error when pressed.'
|
||||
defaultMessage='When false, only System Administrators can create teams.'
|
||||
/>
|
||||
}
|
||||
value={this.state.enableTeamCreation}
|
||||
|
||||
@@ -152,6 +152,16 @@ export default class SelectTeam extends React.Component {
|
||||
|
||||
var isSystemAdmin = Utils.isSystemAdmin(UserStore.getCurrentUser().roles);
|
||||
|
||||
let teamHelp = null;
|
||||
if (isSystemAdmin && (global.window.mm_config.EnableTeamCreation === 'false')) {
|
||||
teamHelp = (
|
||||
<FormattedMessage
|
||||
id='login.createTeamAdminOnly'
|
||||
defaultMessage='This option is only available for System Administrators, and does not show up for other users.'
|
||||
/>
|
||||
);
|
||||
}
|
||||
|
||||
let teamSignUp;
|
||||
if (isSystemAdmin || (global.window.mm_config.EnableTeamCreation === 'true' && !Utils.isMobileApp())) {
|
||||
teamSignUp = (
|
||||
@@ -165,6 +175,9 @@ export default class SelectTeam extends React.Component {
|
||||
defaultMessage='Create a new team'
|
||||
/>
|
||||
</Link>
|
||||
<div>
|
||||
{teamHelp}
|
||||
</div>
|
||||
</div>
|
||||
);
|
||||
}
|
||||
|
||||
Ссылка в новой задаче
Block a user