mirror of
https://github.com/TryGhost/Ghost.git
synced 2025-02-10 23:36:14 -05:00
Merge pull request #3202 from novaugust/export-download
Add access_token to debug screen's export link
This commit is contained in:
commit
6eccccb741
1 changed files with 2 additions and 1 deletions
|
@ -2,7 +2,8 @@ var DebugController = Ember.Controller.extend(Ember.Evented, {
|
|||
uploadButtonText: 'Import',
|
||||
|
||||
exportPath: function () {
|
||||
return this.get('ghostPaths').apiUrl('db');
|
||||
return this.get('ghostPaths').apiUrl('db') +
|
||||
'?access_token=' + this.get('session.access_token');
|
||||
}.property(),
|
||||
|
||||
actions: {
|
||||
|
|
Loading…
Add table
Reference in a new issue