symfony/propel: problem trying to add a new object action in a backend module
- by user248959
Hi,
i have created this model:
propel:
  shop_orders:
    orders_id: { phpName: Id, type: INTEGER, size: '11', primaryKey: true, autoIncrement: true, required: true }
    email: { type: VARCHAR, size: '45', required: true }
Then i have generated an admin module and i have add this below to generator.yml:
config:
  actions: ~
  fields:  ~
  list:
    object_actions:
      foo: {}
When I click on the foo action It generates this url:
  backend_dev.php/sp1/ListFoo/action?id=1
and I get this message:
  Action "sp1/action" does not exist.
sf 1.4/propel
Any idea?
Javier