# Feature request We would like to add the ability for registered users to post their success stories. This will likely involve - [ ] adding a new database table via a `SuccessStory` model in `src/api/models.py` - [ ] contains at least the fields for `created_by` (User), `created_at`, `text`, `is_approved`, others? - [ ] a serializer for the model in `src/api/serializers.py` - [ ] a view in `src/api/views.py` - [ ] only authenticated users should be able to CREATE a new success story - [ ] anyone should be able to read success stories (@kylemh is this correct?) - [ ] for the initial implementation all other interactions should be disabled (no updating, deleting, etc)
Feature request
We would like to add the ability for registered users to post their success stories. This will likely involve
SuccessStorymodel insrc/api/models.pycreated_by(User),created_at,text,is_approved, others?src/api/serializers.pysrc/api/views.py