Skip to content

Commit

Permalink
Modify /embed/atom/ endpoints in dev-build to match those in applicat…
Browse files Browse the repository at this point in the history
…ions/conf/routes

After this PR: #25360 this commit is making the same changes in `dev-build/conf/routes` to make `dev-build` compile as this is used for local development.
  • Loading branch information
ioannakok committed Aug 11, 2022
1 parent dd16674 commit 5f5ab0a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions dev-build/conf/routes
Original file line number Diff line number Diff line change
Expand Up @@ -343,10 +343,9 @@ GET /sharecount/*path.json

GET /preferences controllers.PreferencesController.indexPrefs()
GET /embed/video/*path controllers.EmbedController.render(path)
GET /embed/atom/:atomType/:id controllers.AtomPageController.render(atomType: String, id: String, isJsEnabled: Boolean = true, hasVerticalScrollbar: Boolean = false, inApp: Boolean = false)
GET /embed/atom/:atomType/:id/nojs controllers.AtomPageController.render(atomType: String, id: String, isJsEnabled: Boolean = false, hasVerticalScrollbar: Boolean = false, inApp: Boolean = false)
GET /embed/atom/:atomType/:id/nojs/scroll-y controllers.AtomPageController.render(atomType: String, id: String, isJsEnabled: Boolean = false, hasVerticalScrollbar: Boolean = true, inApp: Boolean = false)
GET /embed/atom/:atomType/:id/inapp controllers.AtomPageController.render(atomType: String, id: String, isJsEnabled: Boolean = true, hasVerticalScrollbar: Boolean = true, inApp: Boolean = true)
GET /embed/atom/:atomType/:id controllers.AtomPageController.render(atomType: String, id: String, isJsEnabled: Boolean = true, hasVerticalScrollbar: Boolean = false)
GET /embed/atom/:atomType/:id/nojs controllers.AtomPageController.renderNoJs(atomType: String, id: String)
GET /embed/atom/:atomType/:id/nojs/scroll-y controllers.AtomPageController.renderNoJsVerticalScroll(atomType: String, id: String)
POST /story-questions/answers/signup controllers.AtomPageController.signup()
OPTIONS /story-questions/answers/signup controllers.AtomPageController.options()

Expand Down

0 comments on commit 5f5ab0a

Please sign in to comment.