feat: view shared links inside of mobile app

This commit is contained in:
bwees 2025-07-31 13:38:14 -05:00
parent f972b8d514
commit c8c6f86518
No known key found for this signature in database
20 changed files with 434 additions and 61 deletions

View file

@ -111,4 +111,13 @@ class SharedLinkService {
}
return null;
}
Future<SharedLink?> getMySharedLink() async {
final responseDto = await _apiService.sharedLinksApi.getMySharedLink();
if (responseDto != null) {
return SharedLink.fromDto(responseDto);
}
return null;
}
}