Update link to rss help

This commit is contained in:
DariusIII
2019-02-25 00:04:01 +01:00
parent 9d0435505b
commit c8ad8a05d8
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -83,7 +83,7 @@ class BasePageController extends Controller
*/
public function __construct()
{
$this->middleware(['auth', 'web'])->except('api', 'rss', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed');
$this->middleware(['auth', 'web'])->except('api', 'contact', 'showContactForm', 'callback', 'getNzb', 'terms', 'capabilities', 'movie', 'apiSearch', 'tv', 'details', 'failed');
// Buffer settings/DB connection.
$this->settings = new Settings();
$this->smarty = app('smarty.view');
+1 -1
View File
@@ -129,7 +129,7 @@
<span class="fa fa-searchengin"></span>
<span class="menu-collapsed">Search</span>
</a>
<a href="{$smarty.const.WWW_TOP}/rss" class="list-group-item list-group-item-action bg-dark text-white">
<a href="{$smarty.const.WWW_TOP}/rss/help" class="list-group-item list-group-item-action bg-dark text-white">
<span class="fa fa-rss-square"></span>
<span class="menu-collapsed">RSS Feeds</span>
</a>
+2 -2
View File
@@ -16,8 +16,8 @@ Route::get('myshows', 'RssController@yShowsRss');
Route::post('myshows', 'RssController@myShowsRss');
Route::get('full-feed', 'RssController@feedRss');
Route::post('full-feed', 'RssController@feedRss');
Route::get('description', 'RssController@showRssDesc');
Route::post('description', 'RssController@showRssDesc');
Route::get('help', 'RssController@showRssDesc');
Route::post('help', 'RssController@showRssDesc');
Route::get('cart', 'RssController@cartRss');
Route::post('cart', 'RssController@cartRss');
Route::get('category', 'RssController@categoryRss');