Add collection access hint to invite screen

This commit is contained in:
Tom Moor
2023-12-16 13:24:53 -05:00
parent 00ecf84dbd
commit 557fb94642
3 changed files with 37 additions and 3 deletions

View File

@@ -67,6 +67,11 @@ export default class CollectionsStore extends Store<Collection> {
});
}
@computed
get nonPrivate(): Collection[] {
return this.all.filter((collection) => collection.isPrivate);
}
@computed
get all(): Collection[] {
return sortBy(