Skip to content

Instantly share code, notes, and snippets.

@NilsDannemann
Last active January 4, 2023 22:22
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save NilsDannemann/5ba4e208c4ac6a279a0e4ba152213900 to your computer and use it in GitHub Desktop.
Save NilsDannemann/5ba4e208c4ac6a279a0e4ba152213900 to your computer and use it in GitHub Desktop.
api endpoints
http://localhost:3000/api/v1/sections/
// -> state: down
// -> ✅ permissions: included (for sections)
http://localhost:3000/api/v1/sections/section1
// -> state: running (but some sections missing)
// -> ✅ permissions: included (for sections)
http://localhost:3000/api/v1/sections/section1/?getUnits=true
// -> ✅ state: running
// -> ✅ permissions: included (for units)
// -> ✅ blocks: included
http://localhost:3000/api/v1/units/
// -> ✅ state: running
// -> permissions: missing (for units)
// -> blocks: missing
http://localhost:3000/api/v1/units/unit1
// -> ✅ state: running
// -> permissions: missing (for units)
// -> blocks: missing
http://localhost:3000/api/v1/units/unit1/?getBlocks=true
// -> state: down
// -> permissions: missing
// -> blocks: missing
http://localhost:3000/api/v1/blocks/
// -> state: down (not needed?)
// -> permissions: missing
http://localhost:3000/api/v1/blocks/block1
// -> state: down (not needed?)
// -> permissions: missing
http://localhost:3000/api/v1/blocks/block1/?getFields=true
// -> state: down (not needed?)
// -> permissions: missing (not needed?)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment