Add unified request pipeline stages
This commit is contained in:
@@ -0,0 +1,5 @@
|
||||
import type {StoredAttachment} from "../model/stored-attachment";
|
||||
|
||||
export function filterUserVisibleStoredAttachments(attachments: StoredAttachment[]): StoredAttachment[] {
|
||||
return attachments.filter(attachment => attachment.scope !== "internal_artifact");
|
||||
}
|
||||
Reference in New Issue
Block a user