app/controllers/api/nightly.php (8 lines of code) (raw):

<?php declare(strict_types=1); use ReleaseInsights\{Json, Model}; // We want to send simplified Json data for our public API $data = []; foreach (new Model('api_nightly')->get() as $key => $values) { $data[$key] = $values['revision']; } new Json($data)->render();