* Get the current auto-archive queue from plugin data
()
| 278 | * Get the current auto-archive queue from plugin data |
| 279 | */ |
| 280 | private async getQueue(): Promise<PendingAutoArchive[]> { |
| 281 | const data = await this.plugin.loadData(); |
| 282 | return data?.autoArchiveQueue || []; |
| 283 | } |
| 284 | |
| 285 | /** |
| 286 | * Save the auto-archive queue to plugin data |
no test coverage detected