Ghost/core/frontend/services/routing
Hannah Wolfe 22e13acd65 Updated var declarations to const/let and no lists
- All var declarations are now const or let as per ES6
- All comma-separated lists / chained declarations are now one declaration per line
- This is for clarity/readability but also made running the var-to-const/let switch smoother
- ESLint rules updated to match

How this was done:

- npm install -g jscodeshift
- git clone https://github.com/cpojer/js-codemod.git
- git clone git@github.com:TryGhost/Ghost.git shallow-ghost
- cd shallow-ghost
- jscodeshift -t ../js-codemod/transforms/unchain-variables.js . -v=2
- jscodeshift -t ../js-codemod/transforms/no-vars.js . -v=2
- yarn
- yarn test
- yarn lint / fix various lint errors (almost all indent) by opening files and saving in vscode
- grunt test-regression
- sorted!
2020-04-29 16:51:13 +01:00
..
config 🐛 Fixed /edit route redirect for tag taxonomies 2020-04-16 21:23:38 +12:00
controllers Updated var declarations to const/let and no lists 2020-04-29 16:51:13 +01:00
helpers Updated var declarations to const/let and no lists 2020-04-29 16:51:13 +01:00
middlewares Updated var declarations to const/let and no lists 2020-04-29 16:51:13 +01:00
CollectionRouter.js Updated var declarations to const/let and no lists 2020-04-29 16:51:13 +01:00
ParentRouter.js Updated var declarations to const/let and no lists 2020-04-29 16:51:13 +01:00
PreviewRouter.js Extracted frontend folder (#10780) 2019-06-19 11:30:28 +02:00
RSSRouter.js 🔥 Removed RSS pagination (#11069) 2019-09-02 11:34:13 +01:00
StaticPagesRouter.js Extracted frontend folder (#10780) 2019-06-19 11:30:28 +02:00
StaticRoutesRouter.js 💡Changed static router - throw 400 for missing tpl 2019-09-06 15:41:42 +01:00
TaxonomyRouter.js 🔒 Added `admin:redirects` config option for disabling admin redirects 2019-09-12 12:40:12 +01:00
UnsubscribeRouter.js Added /unsubscribe/ route to the front-end (#11394) 2019-11-15 09:36:49 +00:00
bootstrap.js Remove External Apps 2020-03-20 10:40:22 +00:00
index.js Moved settings dynamicRouting to routing.settings 2019-06-21 16:34:17 +02:00
registry.js Extracted frontend folder (#10780) 2019-06-19 11:30:28 +02:00
settings.js Moved settings dynamicRouting to routing.settings 2019-06-21 16:34:17 +02:00