I'm relatively new to fuelPHP development, one thing i wanted to make was a controller in a subdirectory, but I can't get it to work.
I've got a working one in /fuel/app/classes/controller/section.php which i can call via http://my.url/section/view and now i wanted a new one in a subdirectory called api.
So i created the folder api and placed a file called test.php with a class like
class Controller_Api_Test extends Controller_Template { [...]
But I just can't call it via URL. /api/test doesn't work, neither does /api_test.
I haven't found more information in the docs about how to call those controllers.
Can somebody explain to me how i've got to create and name those files?