mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
feat: view shared links inside of mobile app
This commit is contained in:
parent
f972b8d514
commit
c8c6f86518
20 changed files with 434 additions and 61 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue