Skip to content

Commit

Permalink
update base on PR auth0-blog#85
Browse files Browse the repository at this point in the history
  • Loading branch information
kostyrko committed Apr 17, 2022
1 parent 3d5f962 commit 9927a53
Show file tree
Hide file tree
Showing 45 changed files with 19,370 additions and 322 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# v1.0.0 - Update to Angular 4 (2017-10-16)

* Upgrade Angular to version 4+
* Structure components and extract service
* Use @auth0/angular-jwt instead of angular2-jwt for HttpClientModule

# v0.0.1 - Update to Angular 2 Beta (2016-01-07)

* Upgraded to work with Angular 2 Beta 0
Expand Down
6 changes: 3 additions & 3 deletions backend/anonymous-routes.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
var express = require('express'),
quoter = require('./quoter');
const express = require('express');
const quoter = require('./quoter');

var app = module.exports = express.Router();
const app = module.exports = express.Router();

app.get('/api/random-quote', function(req, res) {
res.status(200).send(quoter.getRandomOne());
Expand Down
Loading

0 comments on commit 9927a53

Please sign in to comment.