mirror of
https://github.com/NNTmux/newznab-tmux.git
synced 2026-08-29 01:08:56 +00:00
16 lines
363 B
PHP
16 lines
363 B
PHP
<?php
|
|
|
|
use Illuminate\Support\Facades\Auth;
|
|
|
|
if (! Auth::check()) {
|
|
$page->show403();
|
|
}
|
|
|
|
$page->title = 'Api';
|
|
$page->meta_title = 'Api Help Topics';
|
|
$page->meta_keywords = 'view,nzb,api,details,help,json,rss,atom';
|
|
$page->meta_description = 'View description of the site Nzb Api.';
|
|
|
|
$page->content = $page->smarty->fetch('apidesc.tpl');
|
|
$page->pagerender();
|