1
0
mirror of https://github.com/C9Glax/tranga-website.git synced 2025-05-16 11:13:01 +02:00

Added GetAllPublications to TaskManager.

This commit is contained in:
glax 2023-05-19 17:36:15 +02:00
parent f0a4bc3e99
commit aa2ab0e1d0

@ -68,6 +68,11 @@ public class TaskManager
_allTasks.CopyTo(ret);
return ret;
}
public Publication[] GetAllPublications()
{
return this._chapterCollection.Keys.ToArray();
}
public void Shutdown()
{