Reputation: 1507
In this source code i found this sub
definition.
sub upload_file : Chained( 'base' ) : PathPart( 'upload-file' ) : Args( 0 ){
I don't understand what means those :
colons and parameters. Can anybody point me to some docs?
Upvotes: 5
Views: 229
Reputation: 385655
:Chained
, :PathPArt
and :Args
are attributes provided by Catalyst.
Upvotes: 6