]> git.immae.eu Git - github/Chocobozzz/PeerTube.git/commitdiff
Fix standard lint
authorChocobozzz <florian.bigard@gmail.com>
Sun, 25 Dec 2016 08:47:49 +0000 (09:47 +0100)
committerChocobozzz <florian.bigard@gmail.com>
Sun, 25 Dec 2016 08:47:49 +0000 (09:47 +0100)
server/helpers/peertube-crypto.js
server/initializers/constants.js
server/initializers/migrations/0005-example.js

index 2e07df00e97a32333b8af34aa51322084041e93b..302ddca58d4bf111267271dbf8c918307ae3fc8e 100644 (file)
@@ -9,8 +9,6 @@ const ursa = require('ursa')
 const constants = require('../initializers/constants')
 const logger = require('./logger')
 
-const algorithm = 'aes-256-ctr'
-
 const peertubeCrypto = {
   checkSignature,
   comparePassword,
@@ -113,11 +111,3 @@ function createCerts (callback) {
     })
   })
 }
-
-function generatePassword (callback) {
-  crypto.randomBytes(32, function (err, buf) {
-    if (err) return callback(err)
-
-    callback(null, buf.toString('utf8'))
-  })
-}
index 6f39b65da11413f2a809feb3d0184c8f0f8ec4db..fc501845a9fce53037c38b4fb0ac16d032e2365e 100644 (file)
@@ -1,7 +1,6 @@
 'use strict'
 
 const config = require('config')
-const maxBy = require('lodash/maxBy')
 const path = require('path')
 
 // ---------------------------------------------------------------------------
index 481c2c4dd8a53d49deb29aa494e9d399a2668afb..cedc429196f89c1e1a628604007dffbeca84926f 100644 (file)
@@ -1,14 +1,14 @@
-/*
-  This is just an example.
-*/
+// /*
+//   This is just an example.
+// */
 
-const db = require('../database')
+// const db = require('../database')
 
-// options contains the transaction
-exports.up = function (options, callback) {
-  // db.Application.create({ migrationVersion: 42 }, { transaction: options.transaction }).asCallback(callback)
-}
+// // options contains the transaction
+// exports.up = function (options, callback) {
+//   db.Application.create({ migrationVersion: 42 }, { transaction: options.transaction }).asCallback(callback)
+// }
 
-exports.down = function (options, callback) {
-  throw new Error('Not implemented.')
-}
+// exports.down = function (options, callback) {
+//   throw new Error('Not implemented.')
+// }