Added chain_point to create a non-REST chain point - added tests
[catagits/CatalystX-Routes.git] / lib / CatalystX / Routes / Role / Class.pm
index f80294e..edf4529 100644 (file)
@@ -13,4 +13,14 @@ has _routes => (
     },
 );
 
+has _chain_points => (
+    traits  => ['Hash'],
+    isa     => 'HashRef[ArrayRef]',
+    handles => {
+        add_chain_point   => 'set',
+        get_chain_point   => 'get',
+        chain_point_names => 'keys',
+    },
+);
+
 1;