Skip to content

Commit

Permalink
✨ added a new global setting to enable the LDAP integration
Browse files Browse the repository at this point in the history
🐛 fixed a bug introduced by integrating the LDAP extension - it is now disabled by default
  • Loading branch information
faburem committed Aug 27, 2024
1 parent 8ae9b1b commit 0dc5ce0
Show file tree
Hide file tree
Showing 11 changed files with 231 additions and 209 deletions.
3 changes: 3 additions & 0 deletions imports/api/globalsettings/globalsettings.js
Original file line number Diff line number Diff line change
Expand Up @@ -169,4 +169,7 @@ defaultSettings.push({
defaultSettings.push({
name: 'showRateInDetails', description: 'settings.show_rate_in_details', type: 'checkbox', value: false, category: 'settings.categories.customization',
})
defaultSettings.push({
name: 'enableLDAP', description: 'settings.enable_LDAP', type: 'checkbox', value: false, category: 'settings.categories.login',
})
export { defaultSettings, Globalsettings }
3 changes: 2 additions & 1 deletion imports/ui/translations/de.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "Ressource in Detailansicht anzeigen/exportieren?",
"allow_individual_task_rates": "Individuelle Stundensätze für Tätigkeiten erlauben?",
"show_rate_in_details": "Rate in Detailansicht anzeigen/exportieren?"
"show_rate_in_details": "Rate in Detailansicht anzeigen/exportieren?",
"enable_LDAP": "LDAP Anmeldung aktivieren?"
},
"customer": {
"select_customer": "Kunde auswählen",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/en.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "Show/export resource field in details view?",
"allow_individual_task_rates": "Allow individual task rates?",
"show_rate_in_details": "Show/export rate field in details view?"
"show_rate_in_details": "Show/export rate field in details view?",
"enable_LDAP": "Enable LDAP login?"
},
"customer": {
"select_customer": "Select a customer",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/es.json
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,8 @@
"openai": "Clave API de Open AI",
"show_resource_in_details": "¿Mostrar/exportar campo de recurso en la vista de detalles?",
"allow_individual_task_rates": "¿Permitir tarifas individuales por tarea?",
"show_rate_in_details": "¿Mostrar/exportar campo de tarifa en la vista de detalles?"
"show_rate_in_details": "¿Mostrar/exportar campo de tarifa en la vista de detalles?",
"enable_LDAP": "¿Habilitar Integración con LDAP?"
},
"customer": {
"select_customer": "Seleccionar un Cliente",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/fr.json
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "Afficher/exporter le champ ressource dans la vue détaillée ?",
"allow_individual_task_rates": "Autoriser des taux de tâche individuels?",
"show_rate_in_details": "Afficher/exporter le champ taux dans la vue détaillée ?"
"show_rate_in_details": "Afficher/exporter le champ taux dans la vue détaillée ?",
"enable_LDAP": "Activer l'intégration LDAP ?"
},
"customer": {
"select_customer": "Selectionner un client",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/ru.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "Отображать/экспортировать поле ресурса на странице 'Детали'?",
"allow_individual_task_rates": "Разрешить индивидуальные ставки задач?",
"show_rate_in_details": "Отображать/экспортировать ставку на странице 'Детали'?"
"show_rate_in_details": "Отображать/экспортировать ставку на странице 'Детали'?",
"enable_LDAP": "Активировать LDAP?"
},
"customer": {
"select_customer": "Выберите клиента",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/ukr.json
Original file line number Diff line number Diff line change
Expand Up @@ -226,7 +226,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "Відображати/експортувати поле ресурсу на сторінці 'Деталі'?",
"allow_individual_task_rates": "Дозволити індивідуальні ставки за завдання?",
"show_rate_in_details": "Відображати/експортувати ставку на сторінці 'Деталі'?"
"show_rate_in_details": "Відображати/експортувати ставку на сторінці 'Деталі'?",
"enable_LDAP": "Активувати LDAP?"
},
"customer": {
"select_customer": "Виберіть клієнта",
Expand Down
3 changes: 2 additions & 1 deletion imports/ui/translations/zh.json
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,8 @@
"openai": "Open AI API Key",
"show_resource_in_details": "在详细视图中显示/导出资源字段",
"allow_individual_task_rates": "允许单独任务费率",
"show_rate_in_details": "在详细视图中显示/导出费率字段"
"show_rate_in_details": "在详细视图中显示/导出费率字段",
"enable_LDAP": "启用 LDAP"
},
"customer": {
"select_customer": "请选一个客户",
Expand Down
Loading

0 comments on commit 0dc5ce0

Please sign in to comment.