javrasya / django-river

Django workflow library that supports on the fly changes ⛵
BSD 3-Clause "New" or "Revised" License
742 stars 105 forks source link

djangor-river removes default `objects` manager from the model #33

Closed javrasya closed 8 years ago

javrasya commented 8 years ago

Django river is adding its own manager named workflow to the model. But, django detects it and decide there is no need to add default one which is objects automatically.

This is related with issue #32.

javrasya commented 8 years ago

@psychok7 , accessing objects now possible but to access workflow manager, you should put it in your model as objects or as another manager to use it. Could you please check it and let me know is there any problem?

psychok7 commented 8 years ago

@javrasya yes i will test it tomorrow and let you know.

psychok7 commented 8 years ago

@javrasya tested it and it looks fine.