1
0
Fork 0
mirror of https://github.com/binwiederhier/ntfy.git synced 2025-07-04 01:56:18 +02:00

Attachments limits; working visitor limit

This commit is contained in:
Philipp Heckel 2022-01-07 14:49:28 +01:00
parent 70aefc2e48
commit c45a28e6af
9 changed files with 287 additions and 186 deletions
server

View file

@ -20,4 +20,5 @@ type cache interface {
Topics() (map[string]*topic, error)
Prune(olderThan time.Time) error
MarkPublished(m *message) error
AttachmentsSize(owner string) (int64, error)
}