stable

Clone or download

Read-only

Display logs of the project creation webhooks

Only the last 10 entries are kept in the logs This is part of story #9962: trigger a webhook when a project is created Change-Id: Icdcce3b38313685e1e3580d5e96852e01072aefb

Modified Files

Name
M site-content/en_US/admin/admin.tab +7 −1 Go to diff View file
M site-content/fr_FR/admin/admin.tab +7 −1 Go to diff View file
M src/common/autoload.php +6 −2 Go to diff View file
A src/common/project/Admin/WebhookPresenter.php +71 −0 Go to diff View file
M src/common/project/Admin/WebhooksPresenter.php +13 −3 Go to diff View file
A src/common/project/Webhook/Log/Status.php +67 −0 Go to diff View file
A src/common/project/Webhook/Log/StatusDataAccessException.php +25 −0 Go to diff View file
A src/common/project/Webhook/Log/StatusRetriever.php +60 −0 Go to diff View file
M src/common/project/Webhook/Log/WebhookLoggerDao.php +33 −2 Go to diff View file
M src/templates/admin/projects/configuration.mustache +48 −3 Go to diff View file
M src/www/admin/project-configuration.php +19 −3 Go to diff View file
A src/www/scripts/admin/project-configuration.js +31 −0 Go to diff View file
A tests/simpletest/common/project/Webhook/Log/StatusRetrieverTest.php +52 −0 Go to diff View file
A tests/simpletest/common/project/Webhook/Log/StatusTest.php +59 −0 Go to diff View file