@@ -400,7 +400,8 @@ public static function restController() {
400
400
'restController '
401
401
], [
402
402
"r " => Parameter::create ("resource " , "The model used " , []),
403
- "p " => Parameter::create ("path " , "The associated route " , [])
403
+ "p " => Parameter::create ("path " , "The associated route " , []),
404
+ 'o ' => Parameter::create ('domain ' , 'The domain in which to create the controller. ' , [], '' )
404
405
], [
405
406
'Creates a REST controller for the class models\User ' => 'Ubiquity rest RestUsers -r=User -p=/rest/users '
406
407
], 'rest ' );
@@ -413,7 +414,8 @@ public static function restApiController() {
413
414
'restapi_controller ' ,
414
415
'restapiController '
415
416
], [
416
- "p " => Parameter::create ("path " , "The associated route " , [])
417
+ "p " => Parameter::create ("path " , "The associated route " , []),
418
+ 'o ' => Parameter::create ('domain ' , 'The domain in which to create the controller. ' , [], '' )
417
419
], [
418
420
'Creates a REST API controller ' => 'Ubiquity restapi -p=/rest '
419
421
], 'rest ' );
@@ -453,7 +455,8 @@ public static function authController() {
453
455
"message " ,
454
456
"baseTemplate "
455
457
], 'index,info,noAccess,disconnected,message,baseTemplate ' ),
456
- "p " => Parameter::create ("path " , "The associated route " , [])
458
+ "p " => Parameter::create ("path " , "The associated route " , []),
459
+ 'o ' => Parameter::create ('domain ' , 'The domain in which to create the controller. ' , [], '' )
457
460
], [
458
461
'Creates a new controller for authentification ' => 'Ubiquity auth AdminAuthController ' ,
459
462
'and associates a route to it ' => 'Ubiquity auth AdminAuthController -p=/admin/auth ' ,
0 commit comments