--- lib/A3C/View.pm 2008/05/20 09:49:27 124 +++ lib/A3C/View.pm 2008/05/22 20:48:42 125 @@ -154,3 +154,15 @@ } }; + +# mount other views +use A3C::View::Organization; + +# we can't really use following form because Jifty would upper case first +# letter of model and try to find A3C::Model::HrEduOrg which doesn't exit! +#Jifty::View::Declare::CRUD->mount_view('hrEduOrg', 'A3C::View::Organization', '/organizations'); +alias A3C::View::Organization under '/organizations', { + object_type => 'hrEduOrg', +}; + +1;