Skip to content
Snippets Groups Projects
Unverified Commit 185e6c2d authored by David Ormsbee's avatar David Ormsbee Committed by GitHub
Browse files

fix: RST formatting for APIs ADR. (#26336)

parent 13914435
No related branches found
No related tags found
No related merge requests found
......@@ -88,4 +88,4 @@ I want to pull data from ModuleStore or Block Structures.
Making any synchronous calls to these systems will break the performance goals
of this app. If you need data from these systems, please find a way to push that
data into smaller mdoels at course publish time.
data into smaller models at course publish time.
......@@ -31,35 +31,37 @@ to the existing set of Inter-app APIs defined at the top level of edx-platform.
Decision
--------
#. All API data structures will be declared as immutable attrs classes in a
separate ``data.py`` file. All data class attributes will have type annotations.
#. Data structures in ``data.py`` will include basic validation of their inputs,
though this will *not* include validation that requires database access.
#. All public inter-app API functions will use type annotations for arguments
and return values.
#. All public inter-app API functions will be exported in the top level ``api``
package. Other applications will only ever import from this top level package.
#. Views, tasks, and any other parts of the learning_sequences app that are not
in the api package will obey the same rules that external apps would follow.
This means that views for learning_sequences will only import from api and will
not directly import from models.
#. Serializers for REST APIs will be defined as inner classes on the views.
Serializer re-use across use cases will be explicitly discouraged to prevent
modifications from rippling across and breaking compatibility elsewhere.
#. Wherever possible, API-level tests will be written without mocking internals,
or prepping the database with model manipulations. The goal of this is to make
it so that that API-level tests *only* break when there are in fact API changes.
We can mock calls to other services, like grades.
1. All API data structures will be declared as immutable attrs classes in a
separate ``data.py`` file. All data class attributes will have type
annotations.
2. Data structures in ``data.py`` will include basic validation of their inputs,
though this will *not* include validation that requires database access.
3. All public inter-app API functions will use type annotations for arguments
and return values.
4. All public inter-app API functions will be exported in the top level ``api``
package. Other applications will only ever import from this top level
package.
5. Views, tasks, and any other parts of the learning_sequences app that are not
in the api package will obey the same rules that external apps would follow.
This means that views for learning_sequences will only import from api and
will not directly import from models.
6. Serializers for REST APIs will be defined as inner classes on the views.
Serializer re-use across use cases will be explicitly discouraged to prevent
modifications from rippling across and breaking compatibility elsewhere.
7. Wherever possible, API-level tests will be written without mocking internals,
or prepping the database with model manipulations. The goal of this is to
make it so that that API-level tests *only* break when there are in fact API
changes. We can mock calls to other services, like grades.
Consequences
------------
#. It will be easier for other applications to access learning_sequence
functionality in a more easily understood and maintainable way.
#. It will be easier to build and maintain plugin code that depends on this
application.
#. Changes that break backwards compatibility will be more obvious.
1. It will be easier for other applications to access learning_sequence
functionality in a more easily understood and maintainable way.
2. It will be easier to build and maintain plugin code that depends on this
application.
3. Changes that break backwards compatibility will be more obvious.
References
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment