miniflux-v2/internal/storage
jvoisin 1f5c8ce353 Don't mix up capacity and length
- `make([]a, b)` create a slice of `b` elements `a`
- `make([]a, b, c)` create a slice of `0` elements `a`, but reserve space for `c` of them

When using `append` on the former, it will result on a slice with `b` leading
elements, which is unlikely to be what we want. This commit replaces the two
instances where this happens with the latter construct.
2024-02-28 19:57:30 -08:00
..
api_key.go Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
batch.go Refactor Batch Builder and prevent accidental and excessive refreshes from the web ui 2023-10-20 16:07:18 -07:00
category.go Use variables for the status in the entries table 2023-11-29 19:32:36 -08:00
certificate_cache.go Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
enclosure.go Don't mix up capacity and length 2024-02-28 19:57:30 -08:00
entry.go Use modern for loops 2024-02-28 19:55:28 -08:00
entry_pagination_builder.go Implement structured logging using log/slog package 2023-09-24 22:37:33 -07:00
entry_query_builder.go Reformat the query in GetEntryIDs 2024-02-25 17:50:30 -08:00
feed.go Use modern for loops 2024-02-28 19:55:28 -08:00
feed_query_builder.go Add feed option to disable HTTP/2 to avoid fingerprinting 2024-02-24 22:30:26 -08:00
icon.go Add new API endpoint /icons/{iconID} 2023-10-06 13:52:33 -07:00
integration.go Add Readeck integration 2024-02-21 19:57:34 -08:00
session.go Use prepared statement for intervals 2024-02-27 21:25:25 -08:00
storage.go Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
timezone.go Move internal packages to an internal folder 2023-08-10 20:29:34 -07:00
user.go Fix typo in log message 2024-01-22 20:15:38 -08:00
user_session.go Use prepared statement for intervals 2024-02-27 21:25:25 -08:00
webauthn.go Add WebAuthn / Passkey integration 2023-11-05 18:57:35 +01:00