mirror of
https://github.com/FreshRSS/FreshRSS.git
synced 2025-12-26 15:07:48 -05:00
14 lines
320 B
PHP
Executable File
14 lines
320 B
PHP
Executable File
<?php
|
|
|
|
class FreshRSS_javascript_Controller extends Minz_ActionController {
|
|
public function firstAction () {
|
|
$this->view->_useLayout (false);
|
|
header('Content-type: text/javascript');
|
|
}
|
|
|
|
public function actualizeAction () {
|
|
$feedDAO = new FreshRSS_FeedDAO ();
|
|
$this->view->feeds = $feedDAO->listFeeds ();
|
|
}
|
|
}
|