mirror of
https://github.com/ansible/awx.git
synced 2026-05-06 17:07:36 -02:30
Merge pull request #6182 from marshmalien/CTiTUserSessionConfigs
Expose CTiT user-session configurations
This commit is contained in:
@@ -199,6 +199,15 @@
|
|||||||
margin-top: 10px;
|
margin-top: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.Form-formGroup {
|
||||||
|
input.form-control {
|
||||||
|
background-color: @default-secondary-bg;
|
||||||
|
border-color: @b7grey;
|
||||||
|
border-radius: 5px;
|
||||||
|
height: 30px;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
.Form-checkbox--stacked {
|
.Form-checkbox--stacked {
|
||||||
label {
|
label {
|
||||||
display: block;
|
display: block;
|
||||||
|
|||||||
@@ -6,8 +6,8 @@
|
|||||||
|
|
||||||
export default ['i18n', function(i18n) {
|
export default ['i18n', function(i18n) {
|
||||||
return {
|
return {
|
||||||
showHeader: false,
|
|
||||||
name: 'configuration_misc_template',
|
name: 'configuration_misc_template',
|
||||||
|
showHeader: false,
|
||||||
showActions: true,
|
showActions: true,
|
||||||
|
|
||||||
fields: {
|
fields: {
|
||||||
@@ -20,6 +20,22 @@ export default ['i18n', function(i18n) {
|
|||||||
},
|
},
|
||||||
ORG_ADMINS_CAN_SEE_ALL_USERS: {
|
ORG_ADMINS_CAN_SEE_ALL_USERS: {
|
||||||
type: 'toggleSwitch',
|
type: 'toggleSwitch',
|
||||||
|
},
|
||||||
|
AUTH_TOKEN_EXPIRATION: {
|
||||||
|
type: 'number',
|
||||||
|
integer: true,
|
||||||
|
min: 60,
|
||||||
|
reset: 'AUTH_TOKEN_EXPIRATION',
|
||||||
|
},
|
||||||
|
AUTH_TOKEN_PER_USER: {
|
||||||
|
type: 'number',
|
||||||
|
integer: true,
|
||||||
|
spinner: true,
|
||||||
|
min: -1,
|
||||||
|
reset: 'AUTH_TOKEN_PER_USER',
|
||||||
|
},
|
||||||
|
AUTH_BASIC_ENABLED: {
|
||||||
|
type: 'toggleSwitch',
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user