Hi Jose Luis, More generally, this is called an "annotation". Other annotations are documented here: https://doc.owncloud.org/server/8.2/developer_manual/app/controllers.html#authentication
Cheers! Alessandro On Fri, Sep 4, 2015 at 1:27 PM, Jose Luis Algara <[email protected]> wrote: > Many thanks. > > You have known how my problem very well. > Now everything works by adding "NoCSRFRequired" in the comments controller. > I never thought that what was in the comments, OC will consider it. > I hope to also provide solutions and ideas to this community. > > Thanks again Lukas. > > 2015-09-04 13:06 GMT+02:00 Lukas Reschke <[email protected]>: > >> >> On Sep 4, 2015, at 1:01 PM, Jose Luis Algara <[email protected]> >> wrote: >> >> Hello. >> >> My name is Jose Luis. >> I'm starting to develop a new application for owncloud, and I can not do >> something basic.... open a new url. >> >> I read everything I could before making the query here, appreciate some >> help to get started. >> >> My code: >> >> In routes.php >> >> return [ >> 'routes' => [ >> ['name' => 'page#index', 'url' => '/', 'verb' => 'GET'], >> ['name' => 'page#codigo', 'url' => '/codigohoy', 'verb' => 'GET'], >> ] >> ]; >> >> >> In pagecontroler.php >> >> public function codigo() { >> return new TemplateResponse('hucodigos', 'codigo'); >> } >> >> >> I suppose you need to disable the CSRF protection here >> (“@NoCSRFRequired”), but please do this on view only controllers ;-) >> >> - Lukas >> >> >> In codigo.php Basic HTML >> >> The problem is that while attempting to open the address >> /owncloud/index.php/apps/hucodigos/codigohoy the browser goes into a loop >> and displays an error ( ERR_TOO_MANY_REDIRECTS ) page instead. >> In Chorme I can see that the generated URL is: >> http://localhost/owncloud/index.php?redirect_url=%2Fowncloud%2Findex.php%2Fapps%2Fhucodigos%2Fcodigohoy >> >> Thanks a lot for the help. >> _______________________________________________ >> Devel mailing list >> [email protected] >> http://mailman.owncloud.org/mailman/listinfo/devel >> >> >> >> _______________________________________________ >> Devel mailing list >> [email protected] >> http://mailman.owncloud.org/mailman/listinfo/devel >> >> > > _______________________________________________ > Devel mailing list > [email protected] > http://mailman.owncloud.org/mailman/listinfo/devel > >
_______________________________________________ Devel mailing list [email protected] http://mailman.owncloud.org/mailman/listinfo/devel
