Skip to content

Commit 0fc8e7c

Browse files
committed
Merge branch 'master' of https://github.com/jackycute/HackMD
2 parents f491cda + 5870d98 commit 0fc8e7c

19 files changed

Lines changed: 19 additions & 0 deletions

lib/auth.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
// auth
23
// external modules
34
var passport = require('passport')

lib/config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
// external modules
23
var fs = require('fs')
34
var path = require('path')

lib/history.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
// history
23
// external modules
34

lib/letter-avatars.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
// external modules
23
var randomcolor = require('randomcolor')
34

lib/logger.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
var winston = require('winston')
23
winston.emitErrs = true
34

lib/migrations/20160515114000-user-add-tokens.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
module.exports = {
23
up: function (queryInterface, Sequelize) {
34
queryInterface.addColumn('Users', 'accessToken', Sequelize.STRING)

lib/migrations/20160607060246-support-revision.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
module.exports = {
23
up: function (queryInterface, Sequelize) {
34
queryInterface.addColumn('Notes', 'savedAt', Sequelize.DATE)

lib/migrations/20160703062241-support-authorship.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
module.exports = {
23
up: function (queryInterface, Sequelize) {
34
queryInterface.addColumn('Notes', 'authorship', Sequelize.TEXT)

lib/migrations/20161009040430-support-delete-note.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
module.exports = {
23
up: function (queryInterface, Sequelize) {
34
queryInterface.addColumn('Notes', 'deletedAt', Sequelize.DATE)

lib/migrations/20161201050312-support-email-signin.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
'use strict'
12
module.exports = {
23
up: function (queryInterface, Sequelize) {
34
queryInterface.addColumn('Users', 'email', Sequelize.TEXT)

0 commit comments

Comments
 (0)