-
Notifications
You must be signed in to change notification settings - Fork 3
Checklist for API Changes
Eugen Kuksa edited this page Jun 7, 2017
·
3 revisions
There are quite a lot places to make adjustments when the API is changed. The following list covers them. Use it as a check list whenever you touch the API.
- Change Database schema [ontohub-models/db/migrate].
- Implement a model [ontohub-models/app/models].
- Change/add routes [ontohub-backend/config/routes.rb].
- Implement a controller [ontohub-backend/app/controllers/v2].
- Implement a serializer [ontohub-backend/app/serializers/v2].
- Change/add JSON-schema [ontohub-backend/spec/support/api/v2/schemas].
- Implement controller specs [ontohub-backend/spec/controllers/v2].