mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-10 00:34:50 +00:00
Update CollectionCompose.vue component
This commit is contained in:
parent
a86a1ae401
commit
bc51339e0c
1 changed files with 5 additions and 1 deletions
|
@ -221,7 +221,11 @@ export default {
|
|||
},
|
||||
|
||||
publish() {
|
||||
axios.post('/api/local/collection/' + this.collectionId + '/publish')
|
||||
axios.post('/api/local/collection/' + this.collectionId + '/publish', {
|
||||
title: this.collection.title,
|
||||
description: this.collection.description,
|
||||
visibility: this.collection.visibility
|
||||
})
|
||||
.then(res => {
|
||||
window.location.href = res.data;
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue