diff --git a/Google-Summer-of-Code-2023-Ideas.md b/Google-Summer-of-Code-2023-Ideas.md
index fdae8a8..fa66ff6 100644
--- a/Google-Summer-of-Code-2023-Ideas.md
+++ b/Google-Summer-of-Code-2023-Ideas.md
@@ -205,15 +205,21 @@ Refactor the code accordingly.
**Additional details**: See discussion [#1231](https://github.com/borgbase/vorta/discussions/1231)
**Possible mentors**: [@real-yfprojects][real-yfprojects], [@m3nu][m3nu], [@Hofer-Julian][Hofer-Julian]
-### Enhance archive table
+### Enhance archive table and archive actions
**Difficulty**: Easy
-**Length**: 25-50 hours
+**Length**: 50 hours
**Skills required**: Python, Qt
-**Description**: Vorta comprises a table listing the archives in a borg repository. There also is a button for renaming the selected archive in another dialog. This task should implement the capability to edit the archive name inline (in the table cell) without having to open another dialog. This task should also add a column showing whether an archive was created by the user manually or by the scheduler. Beneath the archive table there is a `compact` button running `borg compact`. However this borg feature is only available since borg v1.2. The button must therefore be hidden from the GUI when using earlier borg versions.
+**Description**: Vorta comprises a table listing the archives in a borg repository. There also is a button for renaming the selected archive in another dialog. This task should implement the capability to edit the archive name inline (in the table cell) without having to open another dialog. This task should also add a column showing whether an archive was created by the user manually or by the scheduler. Beneath the archive table there is a `compact` button running `borg compact`. However this borg feature is only available since borg v1.2. The button must therefore be hidden from the GUI when using earlier borg versions. There is also a button for refreshing the selected archive data from the repository. This button should work when selecting multiple archives too. Vorta allows mounting a selected archive. Implement the option to copy the mount location to the clipboard, open the file manager at the mount location and a setting for doing that automatically after mounting.
+Currently the user has to select a folder to mount to. This can be very time consuming. This task should also add the possibility to 'quick mount' a repository into a temporary directory created by vorta.
**Task outline**:
Add additional column to the archive table.
Implement edit functionality.
-Hide `compact` button for borg versions <1.2
+Hide `compact` button for borg versions <1.2.
+Implement refreshing multiple archives.
+Implement copying mount path to the clipboard.
+Implement opening the mount location in default file explorer.
+Implement automatically opening mount location (+ corresponding setting).
+Implement quick mount action.
**Additional details**: TODO
**Possible mentors**: [@real-yfprojects][real-yfprojects], [@m3nu][m3nu], [@Hofer-Julian][Hofer-Julian]