1
0
Fork 0

Update ExportSettings

This commit is contained in:
Daniel Supernault 2019-04-24 17:37:27 -06:00
parent 4122bb83cb
commit 3651917e84
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 12 additions and 4 deletions

View File

@ -34,7 +34,9 @@ trait ExportSettings
return response()->streamDownload(function () use ($data) { return response()->streamDownload(function () use ($data) {
echo json_encode($data, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE); echo json_encode($data, JSON_PRETTY_PRINT|JSON_UNESCAPED_SLASHES|JSON_UNESCAPED_UNICODE);
}, 'account.json'); }, 'account.json', [
'Content-Type' => 'application/json'
]);
} }
public function exportFollowing() public function exportFollowing()
@ -46,7 +48,9 @@ trait ExportSettings
}); });
return response()->streamDownload(function () use($data) { return response()->streamDownload(function () use($data) {
echo $data; echo $data;
}, 'following.json'); }, 'following.json', [
'Content-Type' => 'application/json'
]);
} }
public function exportFollowers() public function exportFollowers()
@ -58,7 +62,9 @@ trait ExportSettings
}); });
return response()->streamDownload(function () use($data) { return response()->streamDownload(function () use($data) {
echo $data; echo $data;
}, 'followers.json'); }, 'followers.json', [
'Content-Type' => 'application/json'
]);
} }
public function exportMuteBlockList() public function exportMuteBlockList()
@ -78,7 +84,9 @@ trait ExportSettings
}); });
return response()->streamDownload(function () use($data) { return response()->streamDownload(function () use($data) {
echo $data; echo $data;
}, 'muted-and-blocked-accounts.json'); }, 'muted-and-blocked-accounts.json', [
'Content-Type' => 'application/json'
]);
} }
} }