mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2026-01-24 05:08:03 -05:00
13 lines
218 B
PHP
Executable File
13 lines
218 B
PHP
Executable File
<?php
|
|
|
|
class javascriptController extends ActionController {
|
|
public function firstAction () {
|
|
$this->view->_useLayout (false);
|
|
header('Content-type: text/javascript');
|
|
}
|
|
|
|
public function mainAction () {
|
|
|
|
}
|
|
}
|