3

I did implement a Catalyst authentication application (captchas, password reminders, access logs, etc...). How am I supposed to re-use it in different Catalyst applications? I.e.: Or - more generally - how am I supposed to let two applications talk each other?

MarcoS
  • 17,323
  • 24
  • 96
  • 174

2 Answers2

2

You're basically asking : I have build two airplanes, how do I let them talk to each other?

Maybe see Catalyst::Plugin::Authentication (and module that use it) and make one yourself, or something else entirely, like a radio

shrinky
  • 159
  • 2
1

You can abstract common components in your local catalystX namespace and extend your controllers and models from that namespace .