mirror of
https://github.com/YunoHost-Apps/dolibarr_ynh.git
synced 2024-09-03 18:35:53 +02:00
5cc9b9c96f
YunoHost users are now instantly logged in with HTTP auth For this feature to work, the app now needs to be private, all YNH users must be added in the database, and the admin user must be a YNH user. As a result, the manifest has changed: - Admin password is replaced by admin user - Public/Private is removed - Adding YNH users as Dolibarr users is removed: this is default now Unfortunately, upgrading the app will not change the previous behavior (ie no automatic login). For automatic login to work, you **must** reinstall the app The sync script does not delete users. Therefore the post_user_delete hook is not needed (and does not work anyway)
65 lines
2 KiB
JSON
65 lines
2 KiB
JSON
{
|
||
"name": "Dolibarr",
|
||
"id": "dolibarr",
|
||
"packaging_format": 1,
|
||
"description": {
|
||
"en": "Dolibarr ERP & CRM is a modern and easy to use web software to manage your business (contacts, invoices, orders, products, stocks, agenda, emailings, etc...).",
|
||
"fr": "Dolibarr ERP & CRM est un logiciel moderne de gestion de votre activité professionnelle ou associative (contacts, factures, commandes, stocks, agenda, etc...)."
|
||
},
|
||
"url": "https://www.dolibarr.org/",
|
||
"license": "free",
|
||
"maintainer": {
|
||
"name": "scith",
|
||
"url": "https://github.com/scith"
|
||
},
|
||
"requirements": {
|
||
"yunohost": ">> 2.4.0"
|
||
},
|
||
"multi_instance": true,
|
||
"services": [
|
||
"nginx",
|
||
"php5-fpm",
|
||
"mysql"
|
||
],
|
||
"arguments": {
|
||
"install" : [
|
||
{
|
||
"name": "domain",
|
||
"type": "domain",
|
||
"ask": {
|
||
"en": "Choose a domain for Dolibarr",
|
||
"fr": "Choisissez un nom de domaine pour Dolibarr"
|
||
},
|
||
"example": "domain.org"
|
||
},
|
||
{
|
||
"name": "path",
|
||
"type": "path",
|
||
"ask": {
|
||
"en": "Choose a path for Dolibarr",
|
||
"fr": "Choisissez un chemin pour Dolibarr"
|
||
},
|
||
"example": "/dolibarr",
|
||
"default": "/dolibarr"
|
||
},
|
||
{
|
||
"name": "admin",
|
||
"type": "user",
|
||
"ask": {
|
||
"en": "Choose an admin user",
|
||
"fr": "Choisissez l’administrateur"
|
||
},
|
||
"example": "johndoe"
|
||
},
|
||
{
|
||
"name": "member",
|
||
"type": "boolean",
|
||
"ask": {
|
||
"en": "Should YunoHost users also be added as members awaiting approval in Dolibarr?",
|
||
"fr": "Les utilisateurs YunoHost doivent-ils aussi être ajoutés comme adhérents en attente de validation dans Dolibarr ?"
|
||
},
|
||
"default": false
|
||
}
|
||
]
|
||
}
|
||
}
|