0
Fork 0
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:
Hannah Wolfe 2014-07-06 20:27:56 +01:00
commit 6eccccb741

View file

@ -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: {