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:
commit
a3cfb06ef7
3 changed files with 3 additions and 3 deletions
|
@ -50,7 +50,7 @@ export default Ember.Component.extend(NotifierMixin, TooltipMixin, {
|
||||||
|
|
||||||
let dzone = new Dropzone("#attachment-button > i", {
|
let dzone = new Dropzone("#attachment-button > i", {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': 'Bearer ' + self.get('localStorage').getSessionItem('token')
|
'Authorization': 'Bearer ' + self.get('session.session.content.authenticated.token')
|
||||||
},
|
},
|
||||||
url: uploadUrl,
|
url: uploadUrl,
|
||||||
method: "post",
|
method: "post",
|
||||||
|
|
|
@ -80,7 +80,7 @@ export default Ember.Component.extend(NotifierMixin, {
|
||||||
|
|
||||||
let dzone = new Dropzone("#upload-documents", {
|
let dzone = new Dropzone("#upload-documents", {
|
||||||
headers: {
|
headers: {
|
||||||
'Authorization': 'Bearer ' + self.get('localStorage').getSessionItem('token')
|
'Authorization': 'Bearer ' + self.get('session.session.content.authenticated.token')
|
||||||
},
|
},
|
||||||
url: importUrl,
|
url: importUrl,
|
||||||
method: "post",
|
method: "post",
|
||||||
|
|
|
@ -29,7 +29,7 @@ import (
|
||||||
const (
|
const (
|
||||||
// AppVersion does what it says
|
// AppVersion does what it says
|
||||||
// Note: versioning scheme is not http://semver.org
|
// Note: versioning scheme is not http://semver.org
|
||||||
AppVersion = "0.14.1"
|
AppVersion = "0.14.2"
|
||||||
)
|
)
|
||||||
|
|
||||||
var port, certFile, keyFile, forcePort2SSL string
|
var port, certFile, keyFile, forcePort2SSL string
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue