Files
luos/workflow
Erik 2a4b59f71f Some fixes to avoid status error 500 when it should return 404
- Another thing to consider, the right enabling/disabling feature must be placed as following:

    -----

    class erikPlugin extends PMPlugin
    {

      ...

      public function enable()
      {
          $this->enableRestService(true);
      }

      public function disable()
      {
          $this->enableRestService(false);
      }

    }
2015-04-28 08:12:04 -05:00
..