stable
Clone or download
Read-only
tasks #12140 Add database in plugin Tuleap_sycnhro
the first part of three of request #12084 Add form in plugin Tuleap_Synchro The goal is to create database to store informations. This informations will be use (after) to launch an automatically update between 2 tuleaps' instance. How to test : Create database Expected results : Database is created In the modal, the message is "under implementation". If there are informations in the database, they will be displayed in the plugin. Change-Id: Ic09a75196da142295ec6f7b75277dc00e3a4bb8b
Modified Files
Name | ||||
---|---|---|---|---|
M | plugins/tuleap_synchro/build-manifest.json | +26 | −1 | Go to diff View file |
A | plugins/tuleap_synchro/db/install.sql | +11 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/db/mysql/updates/2018/201808100858_add_table_tuleap_synchro.php | +57 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/db/uninstall.sql | +1 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/Dao/TuleapSynchroDao.php | +51 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/Endpoint.php | +100 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointBuilder.php | +30 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/Endpoint/EndpointRetriever.php | +72 | −0 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsController.php | +30 | −4 | Go to diff View file |
M | plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsPresenter.php | +20 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsPresenterBuilder.php | +38 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/Tuleap_Synchro/ListEndpoints/ListEndpointsRetriever.php | +72 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/include/constants.php | +22 | −0 | Go to diff View file |
M | plugins/tuleap_synchro/include/tuleap_synchroPlugin.class.php | +10 | −1 | Go to diff View file |
M | plugins/tuleap_synchro/site-content/fr_FR/LC_MESSAGES/tuleap-tuleap_synchro.po | +1 | −1 | Go to diff View file |
M | plugins/tuleap_synchro/templates/list_endpoints.mustache | +31 | −6 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/_tuleap-synchro.scss | +37 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-blue-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-blue.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-green-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-green.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-grey-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-grey.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-orange-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-orange.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-purple-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-purple.scss | +22 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-red-condensed.scss | +23 | −0 | Go to diff View file |
A | plugins/tuleap_synchro/themes/BurningParrot/css/tuleap-synchro-red.scss | +23 | −0 | Go to diff View file |