1
0
Fork 0
mirror of https://github.com/documize/community.git synced 2025-07-19 21:29:42 +02:00

Merge branch 'master' into db-auto-upgrade

This commit is contained in:
Elliott Stoneham 2016-07-12 16:41:03 +01:00
commit a3cfb06ef7
3 changed files with 3 additions and 3 deletions

View file

@ -50,7 +50,7 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
let dzone = new Dropzone("#attachment-button > i", {
headers: {
'Authorization': 'Bearer ' + self.get('localStorage').getSessionItem('token')
'Authorization': 'Bearer ' + self.get('session.session.content.authenticated.token')
},
url: uploadUrl,
method: "post",

View file

@ -80,7 +80,7 @@ export default Ember.Component.extend(NotifierMixin, {
let dzone = new Dropzone("#upload-documents", {
headers: {
'Authorization': 'Bearer ' + self.get('localStorage').getSessionItem('token')
'Authorization': 'Bearer ' + self.get('session.session.content.authenticated.token')
},
url: importUrl,
method: "post",

View file

@ -29,7 +29,7 @@ import (
const (
// AppVersion does what it says
// Note: versioning scheme is not http://semver.org
AppVersion = "0.14.1"
AppVersion = "0.14.2"
)
var port, certFile, keyFile, forcePort2SSL string