Merge pull request #337 from andrewhayward/applications

Applications
This commit is contained in:
Chris McAvoy 2013-05-31 18:39:23 -07:00
Родитель 0211f9eac3 65a5620ebe
Коммит b3c68d6e8e
1 изменённых файлов: 1 добавлений и 7 удалений

Просмотреть файл

@ -7,15 +7,9 @@ var path = require('path');
var s3 = require('../s3');
var thumbs = require('../lib/thumbs');
// We'll set this when we're done
var evidence;
var ALLOWED_TYPES = ['image', 'video'];
module.exports = {
setup: function () {
evidence = db.model('Evidence');
},
properties: {
id: {
type: db.type.INTEGER,
@ -155,7 +149,7 @@ module.exports = {
filePath = '/' + prefix + '/' + key + '.' + format,
thumbPath = '/' + prefix + '/' + key + '_thumb.png';
evidence.create({
db.model('Evidence').create({
key: key,
mediaType: file.type,
location: filePath,