mirror of
https://github.com/TryGhost/Ghost.git
synced 2024-11-30 01:42:29 +03:00
f4d75388fd
fixes https://github.com/TryGhost/Team/issues/2919 This pull request implements a new feature that allows bulk editing of posts by a filter. It adds a new `bulkEdit` endpoint to the posts API and new `PostsService` methods to handle the bulk actions. The posts list component is duplicated, so we can keep working in a copied version without affecting the old version without a flag. It temporarily adds a star icon to indicate featured posts in the posts list.
8 lines
152 B
JavaScript
8 lines
152 B
JavaScript
import Component from '@glimmer/component';
|
|
|
|
export default class PostsList extends Component {
|
|
get list() {
|
|
return this.args.list;
|
|
}
|
|
}
|