Creating bare-bones controller in feed plugin for updates.

Starting work on #47. This will eventually provide a mechanism for triggering manual feed updates from the backend.
This commit is contained in:
Jason Williams
2020-12-30 15:20:47 -07:00
parent 1fd2880216
commit 3792846778
3 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php namespace Jasonwilliams\Feed\Controllers;
use BackendMenu;
use Backend\Classes\Controller;
/**
* Import Back-end Controller
*/
class Import extends Controller
{
public function index()
{
}
}