Skip to content

Commit

Permalink
Update bloggability.php
Browse files Browse the repository at this point in the history
  • Loading branch information
500Foods authored Mar 4, 2024
1 parent 2815735 commit 254684a
Showing 1 changed file with 17 additions and 7 deletions.
24 changes: 17 additions & 7 deletions bloggability.php
Original file line number Diff line number Diff line change
@@ -1,16 +1,26 @@
#!/usr/bin/env php
<?php
error_reporting(E_ALL);
ini_set('display_errors', TRUE);
ini_set('display_startup_errors', TRUE);
if (ob_get_level()) {
$buf = ob_get_clean();
ob_start();
echo substr($buf, 0, strpos($buf, file(__FILE__)[0]));
}

// bloggability.php
//
// This is the REST API implementation for the back-end of the Bloggability project
//
// Endpoints:
// - Login
// - Welcome
// - RSS
// BlogAPI:
// - handleRequest()
// - Authorization Services:
// - Login
// - Renew
// - Logout
// - LogoutAll
// - LogAction
// - Blog Services
// - Welcome
// - RSS


// Most actions are logged using a timer to monitor performance
Expand Down

0 comments on commit 254684a

Please sign in to comment.