diff options
author | Tim Culverhouse <tim@timculverhouse.com> | 2023-04-16 09:53:38 -0500 |
---|---|---|
committer | Robin Jarry <robin@jarry.cc> | 2023-04-22 22:40:12 +0200 |
commit | 87765f93de9b5c123be5beee45b62425c71c2005 (patch) | |
tree | 0c9401dc48b48d4592900109d592befc5c624f21 /models | |
parent | 82de08a8a3f55c438d8808e3c759e3d99261c4b8 (diff) | |
download | aerc-87765f93de9b5c123be5beee45b62425c71c2005.tar.gz |
capabilities: report capabilities from backend
Use the Backend interface to report Backend capabilities. Previously,
these were reported via a DirectoryInfo message, however they have
nothing to do with a directory and should be reported directly by the
backend. Add Capabilities method to Backend interface, satisfy this in
each backend, and use it on the UI side.
Remove Caps field from DirectoryInfo
Signed-off-by: Tim Culverhouse <tim@timculverhouse.com>
Acked-by: Robin Jarry<robin@jarry.cc>
Diffstat (limited to 'models')
-rw-r--r-- | models/models.go | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/models/models.go b/models/models.go index c6315e0e..6843398c 100644 --- a/models/models.go +++ b/models/models.go @@ -57,9 +57,6 @@ type DirectoryInfo struct { // set to true if the value counts are accurate AccurateCounts bool - - // Caps contains the backend capabilities - Caps *Capabilities } // Capabilities provides the backend capabilities |